Skip to content

Commit

Permalink
app: Update template-infra:app to version 0.15.4.post2.dev0+9db85e1
Browse files Browse the repository at this point in the history
  • Loading branch information
nava-platform-bot committed Mar 7, 2025
1 parent f502e1b commit 92aff40
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .template-infra/app-app.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: v0.15.4-1-gdd6a744
_commit: v0.15.4-2-g9db85e1
_src_path: https://github.com/navapbc/template-infra
app_has_dev_env_setup: true
app_local_port: 3000
Expand Down
11 changes: 5 additions & 6 deletions e2e/app/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ import baseConfig from '../playwright.config';
import { deepMerge } from '../lib/util';
import { defineConfig } from '@playwright/test';

export default defineConfig(deepMerge(
baseConfig,
{
export default defineConfig(
deepMerge(baseConfig, {
use: {
baseURL: baseConfig.use.baseURL || "localhost:3000",
baseURL: baseConfig.use.baseURL || 'localhost:3000',
// emailServiceType: "Mailinator", // Options: ["MessageChecker", "Mailinator"]. Default: "MessageChecker"
},
}
));
})
);
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,4 @@ test.describe('Generic Webpage Tests', () => {
// const element = page.locator('h1');
// await expect(element).toBeVisible();
// });

});

0 comments on commit 92aff40

Please sign in to comment.