Skip to content

Commit

Permalink
chore: Fix system test path
Browse files Browse the repository at this point in the history
  • Loading branch information
Cory Dyer committed Sep 10, 2024
1 parent 5e54b3b commit 1153dda
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/kitchen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ describe('🚰 kitchen sink', () => {
'utf8'
);
const tsconfig = JSON.parse(tsconfigJson);
assert.deepStrictEqual(tsconfig.extends, './node_modules/wsts/tsconfig-widesky.json');
assert.deepStrictEqual(
tsconfig.extends,
'./node_modules/@widesky/wsts/tsconfig-widesky.json'
);

// server.ts has a lint error. Should error.
assert.throws(() => cp.execSync(`${WSTS} lint src/server.ts`, opts));
Expand Down

0 comments on commit 1153dda

Please sign in to comment.