diff options
| author | Bobby <[email protected]> | 2022-01-26 13:57:40 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-01-26 13:57:40 -0500 |
| commit | 901901f0cc4795305d368f588a2d18fe2a8e28b2 (patch) | |
| tree | dbaf30463ef987e9d6727b3afe783e3d53021b50 /tests | |
| parent | 235a6523cc3239193bb908ae91da7426929d79ab (diff) | |
| download | izuku.js-901901f0cc4795305d368f588a2d18fe2a8e28b2.tar.xz izuku.js-901901f0cc4795305d368f588a2d18fe2a8e28b2.zip | |
feat: inbuilt table functionality
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/simple.test.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/simple.test.ts b/tests/simple.test.ts new file mode 100644 index 0000000..fa2167f --- /dev/null +++ b/tests/simple.test.ts @@ -0,0 +1,10 @@ +import { Frame } from '../src/index'; +import { data, header } from './support/people'; + +const frame = new Frame(data, header); + +describe('Print a frame', () => { + it('should print a frame', () => { + frame.show(); + }); +}); |
