1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/node_modules/argsarray/test/test.noargs.js
2022-07-15 11:08:01 -03:00

11 lines
No EOL
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();
});