Skip to content

Commit

Permalink
set playwright dev and port
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem committed Sep 2, 2024
1 parent 81ce243 commit 221b157
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion playwright-tests/storage-states/bos-loader-url.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cookies": [],
"origins": [
{
"origin": "http://localhost:3000",
"origin": "http://localhost:8080",
"localStorage": [
{
"name": "flags",
Expand Down
2 changes: 1 addition & 1 deletion playwright-tests/storage-states/wallet-connected.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cookies": [],
"origins": [
{
"origin": "http://localhost:3000",
"origin": "http://localhost:8080",
"localStorage": [
{
"name": "near-wallet-selector:recentlySignedInWallets",
Expand Down
2 changes: 1 addition & 1 deletion playwright-tests/storage-states/wallet-not-connected.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cookies": [],
"origins": [
{
"origin": "http://localhost:3000",
"origin": "http://localhost:8080",
"localStorage": []
}
],
Expand Down
4 changes: 2 additions & 2 deletions playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ export default defineConfig({

/* Run your local dev server before starting the tests */
webServer: {
command: "yarn start",
port: 3000,
command: "yarn dev",
port: 8080,
reuseExistingServer: !process.env.CI,
},
});

0 comments on commit 221b157

Please sign in to comment.