Skip to content

Commit

Permalink
verify fuels is available in fuel-gauge
Browse files Browse the repository at this point in the history
  • Loading branch information
nedsalk committed Jan 6, 2025
1 parent cbf539f commit 247ae75
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"depsync:lint": "syncpack list-mismatches",
"depsync:fix": "syncpack fix-mismatches",
"test": "vitest --run --coverage --config vitest.node.config.mts $(scripts/tests-find.sh --node)",
"test:node": "vitest --run --coverage --config vitest.node.config.mts packages/fuels/test/features/dev.test.ts",
"test:node": "vitest --run --coverage --config vitest.node.config.mts packages/fuel-gauge/src/fuels-dev.test.ts",
"test:browser": "vitest --run --coverage --config vitest.browser.config.mts $(scripts/tests-find.sh --browser)",
"test:all": "run-p test:node test:browser",
"test:filter": "vitest --run --coverage false --config vitest.node.config.mts",
Expand Down
9 changes: 9 additions & 0 deletions packages/fuel-gauge/src/fuels-dev.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { execSync } from 'child_process';

describe('fuels-dev', () => {
test('it works', () => {
const res = execSync('pnpm fuels init').toString();

console.log(res);
});
});

0 comments on commit 247ae75

Please sign in to comment.