Skip to content

Commit

Permalink
Playwright baseURL var should be URL (#748)
Browse files Browse the repository at this point in the history
The typo made the merge not work
  • Loading branch information
lamroger-nava authored Oct 16, 2024
1 parent b7a4677 commit 2511aea
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions e2e/app/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { deepMerge } from '../util';
import { defineConfig } from '@playwright/test';

export default defineConfig(deepMerge(
baseConfig,
{
use: {
baseUrl: baseConfig.use.baseUrl || "localhost:3000"
},
}
));
baseConfig,
{
use: {
baseURL: baseConfig.use.baseURL || "localhost:3000"
},
}
));

0 comments on commit 2511aea

Please sign in to comment.