chore: rename `playwrite` to `playwright` (#1203)

I assume this was a mistake and not intentional.
This commit is contained in:
Brian Donovan 2023-07-17 12:00:59 -04:00 committed by GitHub
parent 9cef71b6b9
commit 947b7b650e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 30 additions and 28 deletions

View File

@ -13,7 +13,7 @@ on:
- lib.rs
- Cargo.toml
- Makefile.toml
- playwrite-tests/**
- playwright-tests/**
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

4
.gitignore vendored
View File

@ -1,6 +1,6 @@
/target
/playwrite-tests/web/dist
/playwrite-tests/fullstack/dist
/playwright-tests/web/dist
/playwright-tests/fullstack/dist
/dist
Cargo.lock
.DS_Store

View File

@ -35,10 +35,10 @@ members = [
# Full project examples
"examples/tailwind",
"examples/PWA-example",
# Playwrite tests
"playwrite-tests/liveview",
"playwrite-tests/web",
"playwrite-tests/fullstack",
# Playwright tests
"playwright-tests/liveview",
"playwright-tests/web",
"playwright-tests/fullstack",
]
exclude = ["examples/mobile_demo"]

View File

@ -1,5 +1,5 @@
[package]
name = "dioxus-playwrite-fullstack-test"
name = "dioxus-playwright-fullstack-test"
version = "0.1.0"
edition = "2021"
publish = false

View File

@ -1,4 +1,4 @@
// This test is used by playwrite configured in the root of the repo
// This test is used by playwright configured in the root of the repo
// Tests:
// - Server functions
// - SSR

View File

@ -1,8 +1,8 @@
[package]
name = "dioxus-playwrite-liveview-test"
name = "dioxus-playwright-liveview-test"
version = "0.0.1"
edition = "2021"
description = "Playwrite test for Dioxus Liveview"
description = "Playwright test for Dioxus Liveview"
license = "MIT/Apache-2.0"
publish = false

View File

@ -1,4 +1,4 @@
// This test is used by playwrite configured in the root of the repo
// This test is used by playwright configured in the root of the repo
use axum::{extract::ws::WebSocketUpgrade, response::Html, routing::get, Router};
use dioxus::prelude::*;

View File

@ -1,8 +1,8 @@
[package]
name = "dioxus-playwrite-web-test"
name = "dioxus-playwright-web-test"
version = "0.0.1"
edition = "2021"
description = "Playwrite test for Dioxus Web"
description = "Playwright test for Dioxus Web"
license = "MIT/Apache-2.0"
publish = false

View File

@ -1,4 +1,4 @@
// This test is used by playwrite configured in the root of the repo
// This test is used by playwright configured in the root of the repo
use dioxus::prelude::*;
use dioxus_web::use_eval;

View File

@ -1,6 +1,6 @@
// @ts-check
const { defineConfig, devices } = require('@playwright/test');
const path = require('path');
const { defineConfig, devices } = require("@playwright/test");
const path = require("path");
/**
* Read environment variables from file.
@ -12,7 +12,7 @@ const path = require('path');
* @see https://playwright.dev/docs/test-configuration
*/
module.exports = defineConfig({
testDir: './playwrite-tests',
testDir: "./playwright-tests",
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
@ -22,21 +22,21 @@ module.exports = defineConfig({
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
reporter: "html",
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
// baseURL: 'http://127.0.0.1:3000',
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
trace: "on-first-retry",
},
/* Configure projects for major browsers */
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
// {
@ -73,27 +73,29 @@ module.exports = defineConfig({
/* Run your local dev server before starting the tests */
webServer: [
{
command: 'cargo run --package dioxus-playwrite-liveview-test --bin dioxus-playwrite-liveview-test',
command:
"cargo run --package dioxus-playwright-liveview-test --bin dioxus-playwright-liveview-test",
port: 3030,
timeout: 10 * 60 * 1000,
reuseExistingServer: !process.env.CI,
stdout: "pipe",
},
{
cwd: path.join(process.cwd(), 'playwrite-tests', 'web'),
command: 'dioxus serve',
cwd: path.join(process.cwd(), "playwright-tests", "web"),
command: "dioxus serve",
port: 8080,
timeout: 10 * 60 * 1000,
reuseExistingServer: !process.env.CI,
stdout: "pipe",
},
{
cwd: path.join(process.cwd(), 'playwrite-tests', 'fullstack'),
command: 'dioxus build --features web\ncargo run --release --features ssr --no-default-features',
cwd: path.join(process.cwd(), "playwright-tests", "fullstack"),
command:
"dioxus build --features web\ncargo run --release --features ssr --no-default-features",
port: 3333,
timeout: 10 * 60 * 1000,
reuseExistingServer: !process.env.CI,
stdout: "pipe",
}
},
],
});