Skip to content

Commit

Permalink
Update cli.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhaiwat10 committed Dec 12, 2024
1 parent c19ff3f commit 9f7acf6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/create-fuels/test/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,13 @@ describe('CLI', { timeout: 15_000 }, () => {
const fuelToolchain = readFileSync(fuelToolchainPath, 'utf-8');
const parsedFuelToolchain = toml.parse(fuelToolchain);

const { toolchain } = parsedFuelToolchain;
const { toolchain, components } = parsedFuelToolchain;

expect(toolchain).toEqual({ channel: 'testnet' });
expect(components).toEqual({
forc: '0.66.5',
'fuel-core': '0.40.0',
});
});

test('should rewrite for the appropriate package manager', async () => {
Expand Down

0 comments on commit 9f7acf6

Please sign in to comment.