Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wjthieme committed Jan 17, 2025
1 parent 3fce56a commit e4c86a1
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions rust-sdk/integration/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,14 @@ function check(path: string) {

describe("Integration", () => {
clientConfigs.forEach((config) => {
it(`Build client using ${config}`, () =>
check(`./client/${config}`),
);
it(`Build client using ${config}`, () => check(`./client/${config}`));
});

coreConfigs.forEach((config) => {
it(`Build core using ${config}`, () =>
check(`./core/${config}`),
);
it(`Build core using ${config}`, () => check(`./core/${config}`));
});

whirlpoolConfigs.forEach((config) => {
it(`Build whirlpool using ${config}`, () =>
check(`./whirlpool/${config}`),
);
it(`Build whirlpool using ${config}`, () => check(`./whirlpool/${config}`));
});
});

0 comments on commit e4c86a1

Please sign in to comment.