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.
1 parent 2848f84 commit 444defaCopy full SHA for 444defa
packages/cli/tests/settings/config.test.ts
@@ -36,7 +36,12 @@ describe('Config', () => {
36
37
const config = getConfig();
38
39
- expect(config).toEqual({ githubMode: false });
+ expect(config).toEqual({
40
+ githubMode: false,
41
+ headless: true,
42
+ userSession: false,
43
+ pageFilter: 'none',
44
+ });
45
expect(fs.existsSync).toHaveBeenCalledWith(mockConfigFile);
46
});
47
@@ -60,7 +65,12 @@ describe('Config', () => {
60
65
61
66
62
67
63
68
69
70
71
72
73
64
74
75
76
0 commit comments