Tests for functions
This commit is contained in:
@ -5,9 +5,16 @@ test('Testing functions', (t) => {
|
|||||||
//For more information on all the methods supported by tape
|
//For more information on all the methods supported by tape
|
||||||
//Please go to https://github.com/substack/tape
|
//Please go to https://github.com/substack/tape
|
||||||
t.true(typeof functions === 'function', 'functions is a Function');
|
t.true(typeof functions === 'function', 'functions is a Function');
|
||||||
|
function Foo() {
|
||||||
|
this.a = () => 1;
|
||||||
|
this.b = () => 2;
|
||||||
|
}
|
||||||
|
Foo.prototype.c = () => 3;
|
||||||
|
t.deepEqual(functions(new Foo()), ['a', 'b'], 'Returns own methods');
|
||||||
|
t.deepEqual(functions(new Foo(), true), ['a', 'b', 'c'], 'Returns own and inherited methods');
|
||||||
//t.deepEqual(functions(args..), 'Expected');
|
//t.deepEqual(functions(args..), 'Expected');
|
||||||
//t.equal(functions(args..), 'Expected');
|
//t.equal(functions(args..), 'Expected');
|
||||||
//t.false(functions(args..), 'Expected');
|
//t.false(functions(args..), 'Expected');
|
||||||
//t.throws(functions(args..), 'Expected');
|
//t.throws(functions(args..), 'Expected');
|
||||||
t.end();
|
t.end();
|
||||||
});
|
});
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
Test log for: Sat Feb 03 2018 12:59:22 GMT+0200 (GTB Standard Time)
|
Test log for: Sat Feb 03 2018 13:01:36 GMT+0200 (GTB Standard Time)
|
||||||
|
|
||||||
> 30-seconds-of-code@0.0.1 test G:\My Files\git Repositories\30-seconds-of-code
|
> 30-seconds-of-code@0.0.1 test G:\My Files\git Repositories\30-seconds-of-code
|
||||||
> tape test/**/*.test.js | tap-spec
|
> tape test/**/*.test.js | tap-spec
|
||||||
@ -443,6 +443,8 @@ Test log for: Sat Feb 03 2018 12:59:22 GMT+0200 (GTB Standard Time)
|
|||||||
Testing functions
|
Testing functions
|
||||||
|
|
||||||
√ functions is a Function
|
√ functions is a Function
|
||||||
|
√ Returns own methods
|
||||||
|
√ Returns own and inherited methods
|
||||||
|
|
||||||
Testing gcd
|
Testing gcd
|
||||||
|
|
||||||
@ -1660,8 +1662,8 @@ Test log for: Sat Feb 03 2018 12:59:22 GMT+0200 (GTB Standard Time)
|
|||||||
√ Works with multiple promises
|
√ Works with multiple promises
|
||||||
|
|
||||||
|
|
||||||
total: 764
|
total: 766
|
||||||
passing: 764
|
passing: 766
|
||||||
duration: 2.4s
|
duration: 2.4s
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user