We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f9847b commit f0bd110Copy full SHA for f0bd110
packages/release-info/src/__tests__/index.test.ts
@@ -3,7 +3,7 @@ import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
3
import { getReleaseInfo } from '../index';
4
5
describe('getReleaseInfo', () => {
6
- describe('development', () => {
+ describe.skipIf(() => process.env.CI)('development', () => {
7
beforeEach(() => {
8
vi.stubEnv('NODE_ENV', 'development');
9
});
0 commit comments