We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test:update
1 parent 4c89e20 commit cd7c2fdCopy full SHA for cd7c2fd
packages/tsc/tests/typecheck.spec.ts
@@ -16,7 +16,10 @@ describe(`vue-tsc`, () => {
16
`);
17
});
18
19
- test.skipIf(!process.env.GITHUB_ACTIONS)(`TypeScript - Next`, () => {
+ const isUpdateEvent = process.env.npm_lifecycle_event === 'test:update';
20
+ const isGithubActions = !!process.env.GITHUB_ACTIONS;
21
+
22
+ test.skipIf(!isUpdateEvent && isGithubActions)(`TypeScript - Next`, () => {
23
expect(
24
getTscOutput('next')
25
).toMatchInlineSnapshot(`
0 commit comments