@@ -23,8 +23,10 @@ suite('GetStarted Test Suite', () => {
2323
2424 describe ( 'Get Started' , ( ) => {
2525 it ( 'should handle a initialize project message from the webview' , async ( ) => {
26- const { messageSpy, getStarted, mockInitializeProject } =
27- await buildGetStarted ( disposable , true )
26+ const { messageSpy, getStarted, mockInitializeProject } = buildGetStarted (
27+ disposable ,
28+ true
29+ )
2830
2931 const webview = await getStarted . showWebview ( )
3032 await webview . isReady ( )
@@ -40,8 +42,10 @@ suite('GetStarted Test Suite', () => {
4042 } ) . timeout ( WEBVIEW_TEST_TIMEOUT )
4143
4244 it ( 'should handle a open experiments message from the webview' , async ( ) => {
43- const { messageSpy, getStarted, mockOpenExperiments } =
44- await buildGetStarted ( disposable , true )
45+ const { messageSpy, getStarted, mockOpenExperiments } = buildGetStarted (
46+ disposable ,
47+ true
48+ )
4549
4650 const webview = await getStarted . showWebview ( )
4751 await webview . isReady ( )
@@ -57,7 +61,7 @@ suite('GetStarted Test Suite', () => {
5761 } ) . timeout ( WEBVIEW_TEST_TIMEOUT )
5862
5963 it ( 'should log an error message if the message from the webview is anything else than initialize project' , async ( ) => {
60- const { messageSpy, getStarted } = await buildGetStarted ( disposable )
64+ const { messageSpy, getStarted } = buildGetStarted ( disposable )
6165
6266 const webview = await getStarted . showWebview ( )
6367 await webview . isReady ( )
0 commit comments