Skip to content

Commit

Permalink
Fixes to references.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffnyman committed Aug 22, 2024
1 parent e5761f5 commit bd1edb8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "A Pedagogical Pastiche of Playwright Programming",
"license": "MIT",
"scripts": {
"test": "npm run clean && npm run pretest && npm run specs && npm run specs:dashboard",
"test": "npm run clean && npm run pretest && npm run tests && npm run specs && npm run specs:dashboard",
"clean": "npx rimraf results",
"specs:dashboard:show": "npx open-cli results/reports/index.html",
"specs:dashboard": "npx ts-node support/cucumber/report.ts",
Expand All @@ -17,6 +17,7 @@
"test:weather:postman": "node ./tests-supplement/weather/newman/weather.postman.test.mjs",
"test:weather:pw": "npx playwright test --project=\"Weather API Tests\"",
"test:weather:jest": "jest",
"tests": "npx playwright test",
"pretest": "npx ts-node support/init.ts",
"report:pw": "npx playwright show-report results",
"lint:fix": "npx eslint . --fix",
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/playground/landing.page.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test, expect } from "@playwright/test";
import { LandingPage } from "./pages/landing.page";
import { LandingPage } from "../../../support/pages/landing.page";

let landingPage: LandingPage;

Expand Down
2 changes: 1 addition & 1 deletion tests/ui/playground/planets.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test, expect } from "@playwright/test";
import { PlanetsPage } from "./pages/planets.page";
import { PlanetsPage } from "../../../support/pages/planets.page";

let planetsPage: PlanetsPage;

Expand Down

0 comments on commit bd1edb8

Please sign in to comment.