Skip to content

Commit 8f6f6ad

Browse files
committed
chore: fix tachometer runs
1 parent 501f4a0 commit 8f6f6ad

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

1st-gen/scripts/test-changes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const { browser = 'chrome' } = yargs(hideBin(process.argv)).argv;
2727
*/
2828
export const getChangedPackages = () => {
2929
let changedPackages = [];
30-
const changesetDir = '.changeset';
30+
const changesetDir = '../.changeset';
3131

3232
try {
3333
// Check if .changeset directory exists

1st-gen/test/benchmark/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ $ node test/benchmark/cli -n 20
178178
for (const packageName of packages) {
179179
const runCommands: string[] = [];
180180
const config: Partial<ConfigFile> = {
181-
root: '../..',
181+
root: '../../..',
182182
$schema:
183183
'https://raw.githubusercontent.com/Polymer/tachometer/master/config.schema.json',
184184
timeout: parseFloat(opts.timeout) || 0,

1st-gen/test/tsconfig-node.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"outDir": ".",
55
"rootDir": ".",
66
"types": ["node"],
7-
"typeRoots": ["../node_modules/@types"]
7+
"typeRoots": ["../../node_modules/@types"]
88
},
99
"include": ["benchmark/cli.ts"],
1010
"exclude": []

0 commit comments

Comments
 (0)