Skip to content
5 changes: 2 additions & 3 deletions test/smoke/suites/actionBar.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.

import { Page } from "playwright";
import { SmokeTestLogger } from "./helper/smokeTestLogger";
import { app, screenshots } from "./main";
import { ElementHelper } from "./helper/elementHelper";
Expand All @@ -11,9 +10,9 @@ import assert = require("assert");

export function startActionBarTests(): void {
describe("ActionBarTest", () => {
async function initApp(): Promise<Page> {
async function initApp(): Promise<void> {
await app.launch();
return app.getMainPage();
await app.getMainPage();
}

async function dispose(this: Mocha.Context): Promise<void> {
Expand Down