Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 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 @@ -12,9 +11,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 Expand Up @@ -57,7 +56,6 @@ export function startActionBarTests(): void {
Element.debugActionItemButtonSelector,
);
await actionButton.click();

await ComponentHelper.waitPackagerStateIncludes(
"primitive-square",
TimeoutConstants.PACKAGER_STATE_TIMEOUT,
Expand Down
Loading