angular-cn/public/docs/_examples/quickstart/ts/app/sanity.spec.ts

12 lines
211 B
TypeScript
Raw Normal View History

describe('universal truths', () => {
it('should do math', () => {
expect(1 + 1).toEqual(2);
expect(5).toBeGreaterThan(4);
});
xit('should skip this', () => {
expect(4).toEqual(40);
});
});