We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5104798 commit a5c77f2Copy full SHA for a5c77f2
1 file changed
lib/node_modules/@stdlib/array/shape/test/test.js
@@ -96,6 +96,9 @@ tape( 'the function returns array dimensions (1d)', function test( t ) {
96
arr = [ 1 ];
97
t.deepEqual( arrayShape( arr ), [ 1 ], 'returns expected value' );
98
99
+ arr = [ 'beep' ];
100
+ t.deepEqual( arrayShape( arr ), [ 1 ], 'returns expected value' );
101
+
102
arr = [ 1, 2 ];
103
t.deepEqual( arrayShape( arr ), [ 2 ], 'returns expected value' );
104
0 commit comments