0
0
mirror of https://github.com/tj/n.git synced 2024-11-22 19:57:54 +01:00
n/test/tests/install-versions.bats

38 lines
518 B
Plaintext
Raw Normal View History

2019-05-04 09:45:53 +02:00
#!/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
2019-05-04 09:45:53 +02:00
@test "n 4.9.1" {
n 4.9.1
output="$(node --version)"
2019-05-04 09:45:53 +02:00
[ "${output}" = "v4.9.1" ]
}
@test "n lts" {
n lts
output="$(node --version)"
[ "${output}" = "v$(display_remote_version lts)" ]
2019-05-04 09:45:53 +02:00
}
@test "n latest" {
n latest
output="$(node --version)"
[ "${output}" = "v$(display_remote_version latest)" ]
2019-05-04 09:45:53 +02:00
}