Structure
Creating tests
test('', () => {});
// Or
it('', () => {});Using describe()
describe()describe('', () => {
it('', () => {});
it('', () => {});
describe('', () => {
it('', () => {});
});
});Run specific test
Skip tests
Last updated