aboutsummaryrefslogtreecommitdiff
path: root/tests/simple.test.ts
blob: 8957d11341dedbc3d0a56f334c590a51469be9ce (plain)
1
2
3
4
5
6
7
8
9
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.title('Simple Frame').toJSON(undefined, 'hello');
  });
});