diff options
| author | Priyansh <[email protected]> | 2022-01-22 20:29:58 -0500 |
|---|---|---|
| committer | Priyansh <[email protected]> | 2022-01-22 20:29:58 -0500 |
| commit | 703b4176d84b3f3deadf9c0b86649c29c8c333f9 (patch) | |
| tree | c0a69a6dc9cbe285bd880c37b23b42b3e3657af3 /tests | |
| parent | 9b744e4ce05b56a1aef94110c027d920a5e10005 (diff) | |
| download | izuku.js-703b4176d84b3f3deadf9c0b86649c29c8c333f9.tar.xz izuku.js-703b4176d84b3f3deadf9c0b86649c29c8c333f9.zip | |
feat: rangeIndex function
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/info.test.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/info.test.ts b/tests/info.test.ts index a710246..d1ec2e4 100644 --- a/tests/info.test.ts +++ b/tests/info.test.ts @@ -22,4 +22,9 @@ describe('info.ts', () => { frame.info(); }); }); + describe('Print the element at rangeIndex 32', () => { + it('should print the element at rangeIndex 32', () => { + expect(frame.rangeIndex(32)).to.equal(null); + }); + }); }); |
