Skip to content

Commit 2947e7a

Browse files
kgryteaman-095
authored andcommitted
test: add test cases to ensure full coverage
1 parent 0568714 commit 2947e7a

File tree

2 files changed

+6
-2
lines changed
  • lib/node_modules/@stdlib/blas/base

2 files changed

+6
-2
lines changed

lib/node_modules/@stdlib/blas/base/layout-resolve-enum/test/test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ tape( 'the function returns `null` if unable to resolve an enumeration constant'
6363
'bar',
6464
-99999999,
6565
-9999999999,
66-
-9999999999999
66+
-9999999999999,
67+
true,
68+
false
6769
];
6870
for ( i = 0; i < values.length; i++ ) {
6971
t.strictEqual( resolve( values[ i ] ), null, 'returns expected value' );

lib/node_modules/@stdlib/blas/base/layout-resolve-str/test/test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ tape( 'the function returns `null` if unable to resolve a layout string', functi
6363
'bar',
6464
-99999999,
6565
-9999999999,
66-
-9999999999999
66+
-9999999999999,
67+
true,
68+
false
6769
];
6870
for ( i = 0; i < values.length; i++ ) {
6971
t.strictEqual( resolve( values[ i ] ), null, 'returns expected value' );

0 commit comments

Comments
 (0)