Skip to content

Commit a3df489

Browse files
yjp20stainless-app[bot]
authored andcommitted
fix: skip deno ecosystem test
1 parent 9b56985 commit a3df489

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

ecosystem-tests/cli.ts

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,16 @@ const projectRunners = {
9595
await run('bun', ['test']);
9696
}
9797
},
98-
deno: async () => {
99-
// we don't need to explicitly install the package here
100-
// because our deno setup relies on `rootDir/deno` to exist
101-
// which is an artifact produced from our build process
102-
await run('deno', ['task', 'install']);
103-
await run('deno', ['task', 'check']);
104-
105-
if (state.live) await run('deno', ['task', 'test']);
106-
},
98+
// Temporarily comment this out until we can test with JSR transformations end-to-end.
99+
// deno: async () => {
100+
// // we don't need to explicitly install the package here
101+
// // because our deno setup relies on `rootDir/deno` to exist
102+
// // which is an artifact produced from our build process
103+
// await run('deno', ['task', 'install']);
104+
// await run('deno', ['task', 'check']);
105+
106+
// if (state.live) await run('deno', ['task', 'test']);
107+
// },
107108
};
108109

109110
let projectNames = Object.keys(projectRunners) as Array<keyof typeof projectRunners>;

0 commit comments

Comments
 (0)