fork of https://github.com/rustwasm/wasm-pack for the needs of NextGraph.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
wasm-pack/tests/all/main.rs

27 lines
466 B

extern crate anyhow;
extern crate assert_cmd;
extern crate lazy_static;
extern crate predicates;
#[macro_use]
extern crate serde_derive;
extern crate binary_install;
extern crate serde_json;
#[macro_use]
extern crate serial_test;
extern crate clap;
extern crate tempfile;
extern crate wasm_pack;
mod build;
mod download;
mod generate;
mod license;
mod lockfile;
mod log_level;
mod manifest;
mod readme;
mod stamps;
mod test;
mod utils;
mod wasm_opt;
mod webdriver;