Skip to content

Commit 8e4a9d9

Browse files
fix tests
1 parent 9f6c0c7 commit 8e4a9d9

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/test/unittest/configuration/providers/djangoLaunch.unit.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ suite('Debugging - Configuration Provider Django', () => {
109109
program: 'hello',
110110
args: ['runserver'],
111111
django: true,
112+
autoStartBrowser: false
113+
112114
};
113115

114116
expect(state.config).to.be.deep.equal(config);
@@ -129,6 +131,7 @@ suite('Debugging - Configuration Provider Django', () => {
129131
program: defaultProgram,
130132
args: ['runserver'],
131133
django: true,
134+
autoStartBrowser: false
132135
};
133136

134137
expect(state.config).to.be.deep.equal(config);

src/test/unittest/configuration/providers/flaskLaunch.unit.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ suite('Debugging - Configuration Provider Flask', () => {
5858
},
5959
args: ['run', '--no-debugger', '--no-reload'],
6060
jinja: true,
61+
autoStartBrowser: false
6162
};
6263

6364
expect(state.config).to.be.deep.equal(config);
@@ -81,6 +82,7 @@ suite('Debugging - Configuration Provider Flask', () => {
8182
},
8283
args: ['run', '--no-debugger', '--no-reload'],
8384
jinja: true,
85+
autoStartBrowser: false
8486
};
8587

8688
expect(state.config).to.be.deep.equal(config);
@@ -103,6 +105,7 @@ suite('Debugging - Configuration Provider Flask', () => {
103105
},
104106
args: ['run', '--no-debugger', '--no-reload'],
105107
jinja: true,
108+
autoStartBrowser: false
106109
};
107110

108111
expect(state.config).to.be.deep.equal(config);

0 commit comments

Comments
 (0)