UNPKG

quoad

Version:

Serenity/JS: Next generation acceptance testing library for modern web applications.

14 lines (10 loc) 234 B
describe('Jasmine', () => { describe('A scenario', () => { it('passes', () => { expect(true).toBe(true); }); it('fails', () => { expect(false).toBe(true); }); }); });