Skip to content

Commit e35873d

Browse files
committed
skip other tests temporarily
1 parent 0328746 commit e35873d

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

tests/smoke-tests/--addon-location.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
runScript,
1212
} from '../helpers.js';
1313

14-
describe('--addon-location', () => {
14+
describe.skip('--addon-location', () => {
1515
let cwd = '';
1616
let tmpDir = '';
1717
let addonLocation = 'packages/my-custom-location';

tests/smoke-tests/--addon-only.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { afterAll, beforeAll, describe, expect, it } from 'vitest';
55

66
import { AddonHelper, dirContents, matchesFixture } from '../helpers.js';
77

8-
describe('--addon-only', () => {
8+
describe.skip('--addon-only', () => {
99
let helper = new AddonHelper({ packageManager: 'pnpm', args: ['--addon-only'] });
1010

1111
beforeAll(async () => {

tests/smoke-tests/--test-app-location.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
runScript,
1212
} from '../helpers.js';
1313

14-
describe('--test-app-location', () => {
14+
describe.skip('--test-app-location', () => {
1515
let cwd = '';
1616
let tmpDir = '';
1717
let testAppLocation = 'packages/my-custom-location';

tests/smoke-tests/--typescript.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
} from '../helpers.js';
1212

1313
for (let packageManager of SUPPORTED_PACKAGE_MANAGERS) {
14-
describe(`--typescript with ${packageManager}`, () => {
14+
describe.skip(`--typescript with ${packageManager}`, () => {
1515
let distDir = '';
1616
let declarationsDir = '';
1717
let helper = new AddonHelper({

tests/smoke-tests/within-existing-monorepo/custom-locations.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let commonFixtures = {
1717
'.prettierrc.cjs': await readFixture('.prettierrc.cjs'),
1818
};
1919

20-
describe('custom locations', () => {
20+
describe.skip('custom locations', () => {
2121
let cwd = '';
2222
let tmpDir = '';
2323
let addonLocation = 'addons/my-fancy-addon';

tests/smoke-tests/within-existing-monorepo/defaults.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let commonFixtures = {
1919
};
2020

2121
for (let packageManager of SUPPORTED_PACKAGE_MANAGERS) {
22-
describe(`monorepo with ${packageManager}`, () => {
22+
describe.skip(`monorepo with ${packageManager}`, () => {
2323
let cwd = '';
2424
let tmpDir = '';
2525
let addonLocation = 'my-addon';

0 commit comments

Comments
 (0)