fix(adapter): fix top level tests to not be in namespace

This commit is contained in:
kbwo 2024-10-19 13:41:09 +09:00
parent 8bfe0e9435
commit 7ce2e97df6
4 changed files with 102 additions and 27 deletions

View file

@ -7,3 +7,7 @@ describe("another", () => {
expect(1).toBe(1);
});
});
test("toplevel test", () => {
expect(1).toBe(2);
});