Added testing commands to Makefile

master
DavidOConnor 6 years ago
parent a0474f9a89
commit 919c72bf41

2
.gitignore vendored

@ -5,5 +5,5 @@ Cargo.lock
# Pycharm # Pycharm
/.idea /.idea
pkg/* /pkg
wasm-pack.log wasm-pack.log

@ -10,9 +10,10 @@ crate-type = ["cdylib"]
[dependencies] [dependencies]
seed = "^0.3.2" seed = "^0.3.3"
wasm-bindgen = "^0.2.42" wasm-bindgen = "^0.2.42"
web-sys = "^0.3.19" web-sys = "^0.3.19"
# For serialization, eg sending requests to a server. Otherwise, not required. # For serialization, eg sending requests to a server. Otherwise, not required.
serde = { version = "^1.0.85", features = ['derive'] } serde = { version = "^1.0.85", features = ['derive'] }
futures = "^0.1.26"

@ -16,7 +16,6 @@ workspace = false
command = "cargo" command = "cargo"
args = ["build", "--release"] args = ["build", "--release"]
[tasks.create_wasms] [tasks.create_wasms]
description = "Build with wasm-pack" description = "Build with wasm-pack"
workspace = false workspace = false
@ -40,6 +39,32 @@ workspace = false
command = "microserver" command = "microserver"
args = ["--port", "${PORT}"] args = ["--port", "${PORT}"]
# ---- TEST ----
[tasks.test]
description = "Run tests. Ex: 'cargo make test firefox'. Test envs: [chrome, firefox, safari]"
clear = true
workspace = false
install_crate = { crate_name = "wasm-pack", binary = "wasm-pack", test_arg = "-V" }
command = "wasm-pack"
args = ["test", "--${@}"]
[tasks.test_release]
extend = "test"
description = "Run tests in release mode. Ex: 'cargo make test firefox'. Test envs: [chrome, firefox, safari]"
args = ["test", "--${@}", "--release"]
[tasks.test_h]
description = "Run headless tests. Ex: 'cargo make test_h firefox'. Test envs: [chrome, firefox, safari]"
extend = "test"
args = ["test", "--headless", "--${@}"]
[tasks.test_h_release]
extend = "test_h"
description = "Run headless tests in release mode. Ex: 'cargo make test_h firefox'. Test envs: [chrome, firefox, safari]"
args = ["test", "--headless", "--${@}", "--release"]
# ---- PRIVATE TASKS - run only inside another task ---- # ---- PRIVATE TASKS - run only inside another task ----
# private atribute is ignored (bug?) # private atribute is ignored (bug?)

@ -9,7 +9,7 @@
`rustup target add wasm32-unknown-unknown` `rustup target add wasm32-unknown-unknown`
`cargo install cargo-make` `cargo install --force cargo-make`
Run `cargo make all` in a terminal to build the app, and `cargo make serve` to start a dev server Run `cargo make all` in a terminal to build the app, and `cargo make serve` to start a dev server
on `127.0.0.0:8000`. on `127.0.0.0:8000`.

Loading…
Cancel
Save