11 lines
170 B
Plaintext
11 lines
170 B
Plaintext
describe('${1:when...}', function () {
|
|
beforeEach(function () {
|
|
${2}
|
|
});
|
|
|
|
it('${3:should...}', function () {
|
|
expect(${4:condition}).toEqual(${5});
|
|
});
|
|
});
|
|
|