snippet cl "console.log" b console.log('$1: ', $1); endsnippet snippet ec "export const " b export const endsnippet snippet ce "console.error" b if (process.env.NODE_ENV !== 'production') console.error(error) endsnippet snippet des "description" b describe("$1", () => { $2 }) endsnippet snippet it "it" b it("$1", async () => { $2 }) endsnippet snippet bf "before" b before(() => { $1 }) endsnippet snippet bfe "before each" b beforeEach(() => { $1 }) endsnippet