mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-28 04:22:38 +03:00
7e16690f10
This commit moves the `webidl/tests` folder to a new `crates/webidl-tests` crate (to have a test-only build script) and ports them to the `#[wasm_bindgen_test]` attribute, which should hopefully make testing much speedier for execution!
22 lines
345 B
TOML
22 lines
345 B
TOML
[package]
|
|
name = "webidl-tests"
|
|
version = "0.1.0"
|
|
authors = ["The wasm-bindgen authors"]
|
|
|
|
[lib]
|
|
test = false
|
|
doctest = false
|
|
path = 'lib.rs'
|
|
|
|
[build-dependencies]
|
|
wasm-bindgen-webidl = { path = '../webidl' }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = { path = '../test' }
|
|
wasm-bindgen = { path = '../..' }
|
|
|
|
[[test]]
|
|
name = 'wasm'
|
|
path = 'main.rs'
|
|
|