mirror of
https://github.com/kbwo/testing-language-server.git
synced 2025-07-23 19:05:16 +00:00
13 lines
189 B
JavaScript
13 lines
189 B
JavaScript
describe("another", () => {
|
|
it("fail", () => {
|
|
expect(1).toBe(0);
|
|
});
|
|
|
|
it("pass", () => {
|
|
expect(1).toBe(1);
|
|
});
|
|
});
|
|
|
|
test("toplevel test", () => {
|
|
expect(1).toBe(2);
|
|
});
|