Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ yarn-error.log
.boa_history

# test262 testing suite
test262
/test262

# Profiling
*.string_data
Expand Down
110 changes: 95 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions tests/tester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ boa_runtime.workspace = true
boa_gc.workspace = true
clap = { workspace = true, features = ["derive"] }
serde = { workspace = true, features = ["derive"] }
serde_yaml = "0.9.34" # TODO: Track https://github.com/saphyr-rs/saphyr.
test262 = { path = "../../tools/test262"}
serde_json.workspace = true
bitflags.workspace = true
colored.workspace = true
rustc-hash = { workspace = true, features = ["std"] }
rayon.workspace = true
toml.workspace = true
color-eyre.workspace = true
phf = { workspace = true, features = ["macros"] }
comfy-table.workspace = true
serde_repr.workspace = true
bus.workspace = true
time.workspace = true

[dev-dependencies]
assert_cmd = "2.0.14"

[features]
default = ["boa_engine/intl_bundled", "boa_engine/experimental", "boa_engine/annex-b"]

Expand Down
Loading