Skip to content

Commit a10a516

Browse files
committed
test: Avoid port collision?
1 parent a8ec51e commit a10a516

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cli/tests/watch.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ describe('preact', () => {
3737

3838
it('should use a custom `.env` with prefixed environment variables', async () => {
3939
let app = await create('default');
40-
server = await watch(app, 8084);
40+
server = await watch(app, 8085);
4141

42-
let page = await loadPage(chrome, 'http://127.0.0.1:8084/');
42+
let page = await loadPage(chrome, 'http://127.0.0.1:8085/');
4343

4444
let header = resolve(app, './src/components/header/index.js');
4545
let original = await readFile(header, 'utf8');

0 commit comments

Comments
 (0)