We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f92536e commit 078f3a0Copy full SHA for 078f3a0
tests/spec/modular/basic.test.ts
@@ -29,9 +29,12 @@ describe("basic", async () => {
29
encoding: "utf8",
30
});
31
32
- const dataContracts = await fs.readFile(path.join(tmpdir, "data-contracts.ts"), {
33
- encoding: "utf8",
34
- });
+ const dataContracts = await fs.readFile(
+ path.join(tmpdir, "data-contracts.ts"),
+ {
35
+ encoding: "utf8",
36
+ },
37
+ );
38
39
expect(api).toMatchSnapshot("api");
40
expect(dataContracts).toMatchSnapshot("dataContracts");
0 commit comments