GT2/GT2-Android/node_modules/argsarray/test/test.noargs.js

11 lines
241 B
JavaScript

'use strict';
var getArgs = require('../');
var test = require('tape');
test('should work with no args', function (t) {
var ourFunc = getArgs(function (args) {
t.deepEquals(args, [], 'should work');
t.end();
});
ourFunc();
});