Change quotes

This commit is contained in:
RMidhunSuresh 2022-10-25 21:20:20 +05:30
parent a3a5d278a0
commit 53c3bf0ab3
No known key found for this signature in database

View File

@ -16,6 +16,6 @@ limitations under the License.
import { test } from '@playwright/test';
test("App has no startup errors that prevent UI render", async ({ page }) => {
await page.goto('/');
await page.getByText('Log In', { exact: true }).waitFor();
await page.goto("/");
await page.getByText("Log In", { exact: true }).waitFor();
});