Skip to content

Commit a0e3e04

Browse files
fix tests
1 parent 8cc6e3e commit a0e3e04

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ suite('Debugging - Configuration Provider Flask', () => {
6060
},
6161
args: ['run', '--no-debugger', '--no-reload'],
6262
jinja: true,
63+
autoStartBrowser: false
6364
};
6465

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

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

0 commit comments

Comments
 (0)