Skip to content

Commit

Permalink
🔨(backend) separate app run from start tunnel
Browse files Browse the repository at this point in the history
When we start a localtunnel, we don't want to rerun the full stack
everytime.
  • Loading branch information
kernicPanel committed Dec 11, 2024
1 parent e1717b5 commit 10ce316
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,6 @@ clean: ## restore repository state as it was freshly cloned
.PHONY: clean

tunnel: ## Run a proxy through localtunnel
@$(MAKE) run
@echo
npx localtunnel -s $(LOCALTUNNEL_SUBDOMAIN) -h $(LOCALTUNNEL_HOST) --port $(LOCALTUNNEL_PORT) --print-requests
.PHONY: tunnel
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/admin/playwright-ct.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default defineConfig({
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: "html",
reporter: "list",
testMatch: "**/*.spec.e2e.?(c|m)[jt]s?(x)",

/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
Expand Down

0 comments on commit 10ce316

Please sign in to comment.