Skip to content

Commit

Permalink
update concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed May 16, 2023
1 parent 38679e2 commit 81392b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_initial.yml
Expand Up @@ -15,7 +15,7 @@ env:
PNPM_VERSION: 7.24.3
NODE_MAINTENANCE_VERSION: 16
NODE_LTS_VERSION: 18
TEST_CONCURRENCY: 6
TEST_CONCURRENCY: 10
# TODO: remove after testing
NEXT_TEST_CONTINUE_ON_ERROR: 'true'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_reusable.yml
Expand Up @@ -15,7 +15,7 @@ env:
PNPM_VERSION: 7.24.3
NODE_MAINTENANCE_VERSION: 16
NODE_LTS_VERSION: 18
TEST_CONCURRENCY: 8
TEST_CONCURRENCY: 10
# TODO: remove after testing
NEXT_TEST_CONTINUE_ON_ERROR: 'true'

Expand Down
2 changes: 1 addition & 1 deletion run-tests.js
Expand Up @@ -360,7 +360,7 @@ async function main() {
}
)
const handleOutput = (type) => (chunk) => {
if (hideOutput && !isFinalRun) {
if (hideOutput) {
outputChunks.push({ type, chunk })
} else {
process.stderr.write(chunk)
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/app-dir/asset-prefix/asset-prefix.test.ts
Expand Up @@ -12,7 +12,7 @@ createNextDescribe(
redirect: 'manual',
})
expect(res.status).toBe(308)
expect(res.headers.get('location')).toBe(next.url + '/a')
expect(new URL(res.headers.get('location'), next.url).pathname).toBe('/a')
})

it('should render link', async () => {
Expand Down

0 comments on commit 81392b2

Please sign in to comment.