Skip to content

Commit

Permalink
fix: move @playwright/test to peer dependencies
Browse files Browse the repository at this point in the history
lucgagan committed Nov 12, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 02d8ea7 commit a71d0d9
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 6 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"dependencies": {
"@hono/node-server": "^1.2.0",
"@playwright/test": "^1.39.0",
"hono": "^3.9.2",
"openai": "^4.17.3",
"sanitize-html": "^2.11.0",
@@ -22,6 +21,9 @@
"playwright",
"test"
],
"peerDependencies": {
"@playwright/test": "^1.39.0"
},
"release": {
"branches": [
"main"
@@ -53,4 +55,4 @@
"test": "playwright test"
},
"version": "0.0.0-development"
}
}
1 change: 1 addition & 0 deletions tests/bin/startServer.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Hono } from "hono";
import { serve } from "@hono/node-server";

export const startServer = (port: number) => {
const app = new Hono();

0 comments on commit a71d0d9

Please sign in to comment.