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

11 lines
No EOL
248 B
JavaScript

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