All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.core.core.test.js Maven / Gradle / Ivy

import { test, expect } from "@playwright/test";

const TEST_URL = "src/core/core.html";

test("unit tests contain no errors", async ({ page }) => {
  await page.goto(TEST_URL);
  await page.content();
  await page.waitForTimeout(100);
  await expect(page.locator(".jasmine-overall-result")).toHaveText(
    /0 failures/,
  );
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy