mirror of
https://github.com/kbwo/testing-language-server.git
synced 2025-07-24 03:15:00 +00:00
9 lines
133 B
JavaScript
9 lines
133 B
JavaScript
describe("another", () => {
|
|
it("fail", () => {
|
|
expect(1).toBe(0);
|
|
});
|
|
|
|
it("pass", () => {
|
|
expect(1).toBe(1);
|
|
});
|
|
});
|