From 537a2e783a9603f76c9187e24f294a6145e789c1 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Fri, 27 Mar 2020 14:28:20 +0100 Subject: [PATCH] tests - pass on enable-proposed-api to server --- test/integration/browser/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/browser/src/index.ts b/test/integration/browser/src/index.ts index 7972dd76521..99f40a87fd3 100644 --- a/test/integration/browser/src/index.ts +++ b/test/integration/browser/src/index.ts @@ -103,7 +103,7 @@ async function launchServer(): Promise<{ endpoint: url.UrlWithStringQuery, serve let serverProcess = cp.spawn( serverLocation, - ['--browser', 'none', '--driver', 'web'], + ['--browser', 'none', '--driver', 'web', '--enable-proposed-api'], { env } );