Skip to content

Commit 07a6dc1

Browse files
committed
test: update messages
1 parent ef9e5f6 commit 07a6dc1

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/blas/base/daxpy-wasm/test

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/base/daxpy-wasm/test/test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ var daxpy = require( './../lib' );
2626

2727
// TESTS //
2828

29-
tape( 'main export is a function', function test( t ) {
29+
tape( 'main export is an object', function test( t ) {
3030
t.ok( true, __filename );
31-
t.strictEqual( typeof daxpy, 'function', 'main export is a function' );
31+
t.strictEqual( typeof daxpy, 'object', 'returns expected value' );
3232
t.end();
3333
});
3434

3535
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' );
3737
t.end();
3838
});
3939

4040
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' );
4242
t.end();
4343
});
4444

0 commit comments

Comments
 (0)