File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/node_modules/@stdlib/blas/base/daxpy-wasm/test Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,19 +26,19 @@ var daxpy = require( './../lib' );
26
26
27
27
// TESTS //
28
28
29
- tape ( 'main export is a function ' , function test ( t ) {
29
+ tape ( 'main export is an object ' , function test ( t ) {
30
30
t . ok ( true , __filename ) ;
31
- t . strictEqual ( typeof daxpy , 'function ' , 'main export is a function ' ) ;
31
+ t . strictEqual ( typeof daxpy , 'object ' , 'returns expected value ' ) ;
32
32
t . end ( ) ;
33
33
} ) ;
34
34
35
35
tape ( 'attached to the main export is a `main` method' , function test ( t ) {
36
- t . strictEqual ( typeof daxpy . main , 'function' , 'method is a function ' ) ;
36
+ t . strictEqual ( typeof daxpy . main , 'function' , 'returns expected value ' ) ;
37
37
t . end ( ) ;
38
38
} ) ;
39
39
40
40
tape ( 'attached to the main export is an `ndarray` method' , function test ( t ) {
41
- t . strictEqual ( typeof daxpy . ndarray , 'function' , 'method is a function ' ) ;
41
+ t . strictEqual ( typeof daxpy . ndarray , 'function' , 'returns expected value ' ) ;
42
42
t . end ( ) ;
43
43
} ) ;
44
44
You can’t perform that action at this time.
0 commit comments