Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nonstring.js « test « resolve « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef63c40f9393dc63219d5e3debb7ed6db175c455 (plain)
1
2
3
4
5
6
7
8
9
var test = require('tape');
var resolve = require('../');

test('nonstring', function (t) {
    t.plan(1);
    resolve(555, function (err, res, pkg) {
        t.ok(err);
    });
});