Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update vitest #3369

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b58d6e4
update package-lock
acolytec3 Apr 24, 2024
3ad4baa
Update browser testing deps
acolytec3 Apr 24, 2024
e07f1fd
Add tweaks to tx browser test config
acolytec3 Apr 24, 2024
4a57122
adjust settings [no ci]
acolytec3 Apr 24, 2024
2a8427e
remove isolate flag [no ci]
acolytec3 Apr 24, 2024
aff820a
Adjust settings again
acolytec3 Apr 24, 2024
47d6b4d
Remove tx config customization
acolytec3 Apr 24, 2024
c211b8f
Update tx config
acolytec3 Apr 24, 2024
b218d59
Merge remote-tracking branch 'origin/master' into vitest-update [no ci]
acolytec3 Apr 24, 2024
2f93451
Customize vm config
acolytec3 Apr 24, 2024
6fd8b88
Add evm vitest config
acolytec3 Apr 24, 2024
a1919c1
fix config again
acolytec3 Apr 25, 2024
9551ea2
Update to latest vitest
acolytec3 Apr 29, 2024
f6861b6
Remove package-lock
acolytec3 Apr 29, 2024
0d99ae0
Merge remote-tracking branch 'origin/master' into vitest-update
acolytec3 Apr 29, 2024
3efc632
update package-lock
acolytec3 Apr 29, 2024
b5b74c8
add blockchain config
acolytec3 Apr 29, 2024
98742ca
fix naming
acolytec3 Apr 30, 2024
4af5b78
skip tx 4844 tests in browser
acolytec3 Apr 30, 2024
34e19e2
turn off ci
acolytec3 Apr 30, 2024
b430d39
run in parallel
acolytec3 Apr 30, 2024
ced7be9
Merge remote-tracking branch 'origin/master' into vitest-update
acolytec3 May 1, 2024
60367aa
update vitest again
acolytec3 May 1, 2024
f093c52
set concurrency to 1
acolytec3 May 1, 2024
6c679a3
Merge remote-tracking branch 'origin/master' into vitest-update
acolytec3 May 3, 2024
c09620f
update vitest again
acolytec3 May 3, 2024
f99294f
debug browser flag
acolytec3 May 3, 2024
9080013
Merge remote-tracking branch 'origin/master' into vitest-update
acolytec3 May 3, 2024
98e8f66
Revert to latest vitest
acolytec3 May 6, 2024
cdedd74
back to v1.6
acolytec3 May 6, 2024
3a7e9c6
Rename everything to vitest.config
acolytec3 May 6, 2024
756f655
extend from monorepo settings
acolytec3 May 6, 2024
d790c0e
Use node 20
acolytec3 May 6, 2024
cd517f0
try excluding the problem child
acolytec3 May 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion .github/workflows/browser.yml
Expand Up @@ -32,7 +32,6 @@ jobs:
cache: 'npm'

- run: npm ci
- run: npm run install-browser-deps

- run: npm run test:browser -w=@ethereumjs/rlp
- run: npm run test:browser -w=@ethereumjs/util
Expand Down
7 changes: 4 additions & 3 deletions config/vitest.browser.config.mts
Expand Up @@ -6,11 +6,12 @@ const config = defineConfig({
test: {
browser: {
enabled: true,
name: 'chrome',
headless: true,
fileParallelism: false,
isolate: false
isolate: true,
name: 'chrome',
fileParallelism: false
},
maxConcurrency: 1
},
plugins: [
wasm(),
Expand Down