Skip to content

Commit f9bc7dc

Browse files
committed
test: add test cases to ensure full coverage
1 parent bd06c4d commit f9bc7dc

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

Lines changed: 3 additions & 1 deletion
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

Lines changed: 3 additions & 1 deletion
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)