closes #485 and 479 removal all package.json from _example subdirs and add an example-config.json to each. Update add-example-symlinks to use new fns updated gitignore, package.json add tests to QuickStart
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
describe('universal truths', () => {
|
|
it('should do math', () => {
|
|
expect(1 + 1).toEqual(2);
|
|
|
|
expect(5).toBeGreaterThan(4);
|
|
});
|
|
|
|
xit('should skip this', () => {
|
|
expect(4).toEqual(40);
|
|
});
|
|
});
|