@@ -34,7 +34,7 @@ describe.skipIf(process.env.ECOSYSTEM_CI)('forceRerunTrigger', () => {
34
34
} )
35
35
} )
36
36
37
- it ( 'related correctly runs only related tests' , async ( ) => {
37
+ it . skipIf ( process . env . ECOSYSTEM_CI ) ( 'related correctly runs only related tests' , async ( ) => {
38
38
const { stdout, stderr } = await runVitest ( {
39
39
related : 'src/sourceA.ts' ,
40
40
root : './fixtures/git-changed/related' ,
@@ -49,7 +49,7 @@ it('related correctly runs only related tests', async () => {
49
49
expect ( stdout ) . not . toContain ( 'not-related.test.ts' )
50
50
} )
51
51
52
- it ( 'doesn\'t run any test in a workspace because there are no changes' , async ( ) => {
52
+ it . skipIf ( process . env . ECOSYSTEM_CI ) ( 'doesn\'t run any test in a workspace because there are no changes' , async ( ) => {
53
53
const { stdout } = await runVitest ( {
54
54
changed : true ,
55
55
root : './fixtures/git-changed/workspace' ,
@@ -59,7 +59,7 @@ it('doesn\'t run any test in a workspace because there are no changes', async ()
59
59
} )
60
60
61
61
// Fixes #4674
62
- it ( 'related correctly runs only related tests inside a workspace' , async ( ) => {
62
+ it . skipIf ( process . env . ECOSYSTEM_CI ) ( 'related correctly runs only related tests inside a workspace' , async ( ) => {
63
63
editFile (
64
64
resolvePath ( import . meta. url , '../fixtures/git-changed/workspace/packages/packageA/index.js' ) ,
65
65
content => `${ content } \n` ,
0 commit comments