mirror of
https://github.com/tj/n.git
synced 2024-11-22 11:37:26 +01:00
38 lines
494 B
Bash
38 lines
494 B
Bash
#!/usr/bin/env bats
|
|
|
|
load shared-functions
|
|
|
|
|
|
function setup() {
|
|
unset_n_env
|
|
setup_tmp_prefix
|
|
}
|
|
|
|
|
|
function teardown() {
|
|
rm -rf "${TMP_PREFIX_DIR}"
|
|
}
|
|
|
|
|
|
# Testing version permutations in lsr tests
|
|
|
|
@test "n 4.9.1" {
|
|
n 4.9.1
|
|
run node --version
|
|
[ "${output}" = "v4.9.1" ]
|
|
}
|
|
|
|
|
|
@test "n lts" {
|
|
n lts
|
|
run node --version
|
|
[ "${output}" = "v$(display_remote_version lts)" ]
|
|
}
|
|
|
|
|
|
@test "n latest" {
|
|
n latest
|
|
run node --version
|
|
[ "${output}" = "v$(display_remote_version latest)" ]
|
|
}
|