| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This repository contains automated tests for Uplink Web that can be run using Playwright, a Node.js library to automate Chromium, Firefox, and WebKit browsers.
Tests running using GitHub Actions:
Before you begin, ensure you have met the following requirements:
git clone https://github.com/Satellite-im/UplinkWeb.gitnpm installnpm run devgit clone git@github.com:Satellite-im/automated-tests-web.gitnpm installnpx playwright install --with-depsnpx playwright testnpx playwright test --uiTests are typically located in the tests directory. Here is an example of a basic test:
import { test, expect } from "@playwright/test";
test("basic test", async ({ page }) => {
await page.goto("https://example.com");
const title = await page.title();
expect(title).toBe("Example Domain");
});To run a specific test file:
npx playwright test tests/your-test-file.spec.jsAny contributions to the repository are welcome!
| Back | FazBrowse Home | New Git URL |