Skip to content

Commit

Permalink
small nits
Browse files Browse the repository at this point in the history
  • Loading branch information
thatkookooguy committed Oct 12, 2024
1 parent 8328e09 commit cc16817
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "achievibit-dev-container",
"name": "achievibit-devcontainer",
"dockerComposeFile": "docker-compose.dev.yml",
"service": "app",
"workspaceFolder": "/workspace",
Expand Down Expand Up @@ -43,7 +43,7 @@
}
}
},
"postCreateCommand": "pnpm install",
"postCreateCommand": "pnpm install --force",
"remoteEnv": {
"NODE_ENV": "devcontainer",
"PUPPETEER_SKIP_DOWNLOAD": "false",
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,5 +177,6 @@
"**/*.txt",
"**/*.rb",
"**/*.go"
]
],
"angular.enable-strict-mode-prompt": false
}
4 changes: 3 additions & 1 deletion scripts/create-github-app.script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ import { chromium } from '@playwright/test';
// open browser
const browser = await chromium.launch({
headless: false,
slowMo: 500
slowMo: 500,
// Required for running inside containers
args: [ '--no-sandbox', '--disable-setuid-sandbox' ]
});
const page = await browser.newPage();
page.setDefaultTimeout(240000);
Expand Down
4 changes: 3 additions & 1 deletion scripts/create-github-oauth.script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ import { chromium } from '@playwright/test';
// open browser
const browser = await chromium.launch({
headless: false,
slowMo: 1000
slowMo: 1000,
// Required for running inside containers
args: [ '--no-sandbox', '--disable-setuid-sandbox' ]
});
const page = await browser.newPage();
page.setDefaultTimeout(240000);
Expand Down

0 comments on commit cc16817

Please sign in to comment.