Skip to content

Commit 1d25feb

Browse files
Merge branch 'main' into jeffsee/zero-2465-add-vercel-telemetry-command
2 parents 232f4d1 + d67fbe0 commit 1d25feb

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.changeset/sweet-waves-tan.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
---
3+
4+
Skip test which is failing due to deleted npm artifact

packages/next/test/fixtures/00-server-build-initial/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const path = require('path');
22
const { deployAndTest } = require('../../utils');
33

44
describe(`${__dirname.split(path.sep).pop()}`, () => {
5-
it('should deploy and pass probe checks', async () => {
5+
it.skip('should deploy and pass probe checks', async () => {
66
await deployAndTest(__dirname);
77
});
88
});

packages/remix/test/integration-vite.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,13 @@ const fixturesPath = join(__dirname, 'fixtures-vite');
1212
const exampleAbsolute = (name: string) =>
1313
join(__dirname, '..', '..', '..', 'examples', name);
1414

15+
const skipped = ['02-interactive-remix-routing-v2'];
1516
// eslint-disable-next-line no-restricted-syntax
1617
for (const fixture of fs.readdirSync(fixturesPath)) {
18+
if (skipped.includes(fixture)) {
19+
// this is currently failing due to the remix artifact being pruned
20+
continue;
21+
}
1722
// eslint-disable-next-line no-loop-func
1823
it(`should build ${fixture}`, async () => {
1924
await expect(

0 commit comments

Comments
 (0)