Skip to content

Commit 8d2f6b1

Browse files
committed
now?
1 parent 501f379 commit 8d2f6b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/jest-config/src/__tests__/normalize.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1888,11 +1888,11 @@ describe('updateSnapshot', () => {
18881888
});
18891889
it('should be new if updateSnapshot is falsy', async () => {
18901890
{
1891-
const {options} = await normalize({rootDir: '/root/'}, {} as Config.Argv);
1891+
const {options} = await normalize({ci: false, rootDir: '/root/'}, {} as Config.Argv);
18921892
expect(options.updateSnapshot).toBe('new');
18931893
}
18941894
{
1895-
const {options} = await normalize({rootDir: '/root/'}, {
1895+
const {options} = await normalize({ci: false, rootDir: '/root/'}, {
18961896
updateSnapshot: false,
18971897
} as Config.Argv);
18981898
expect(options.updateSnapshot).toBe('new');

0 commit comments

Comments
 (0)