Skip to content

Commit

Permalink
test curl with exposed port #3036
Browse files Browse the repository at this point in the history
  • Loading branch information
emilschn committed Sep 20, 2024
1 parent 8c5b817 commit 8671d7f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,6 @@ jobs:
extensions: mbstring, xml, ctype, iconv, intl, pdo, pdo_mysql, dom, filter, gd, iconv, json, mbstring, sockets
env:
update: true

- name: Curl test
run: curl -i http://localhost:80

- name: Cache wkthtmltopdf
uses: actions/cache@v2
id: cache-wkhtmltopdf
Expand Down
12 changes: 7 additions & 5 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,11 @@ export default defineConfig({
],

/* Run your local dev server before starting the tests */
// webServer: {
// command: 'npm run start',
// url: 'http://127.0.0.1:3000',
// reuseExistingServer: !process.env.CI,
// },
webServer: {
command: `symfony server:start --port=8080`,
env: {
APP_ENV: 'test',
},
url: `http://localhost:8080`,
},
});

0 comments on commit 8671d7f

Please sign in to comment.