Socialify

Folder ..

Viewing simple.test.ts
11 lines (9 loc) • 302.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
import { Frame } from '../src/index';
import { data, header } from './support/duplicatePeople';

const frame = new Frame(data, header);

describe('Print a frame', () => {
  it('should print a frame', () => {
    frame.title('Simple Frame').showAll();
    frame.removeDuplicates(0).showAll();
  });
});