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

40 lines
626 B
Plaintext
Raw Normal View History

2019-05-04 09:45:53 +02:00
#!/usr/bin/env bats
load shared-functions
load '../../node_modules/bats-support/load'
load '../../node_modules/bats-assert/load'
2019-05-04 09:45:53 +02:00
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)"
assert_equal "${output}" "v4.9.1"
2019-05-04 09:45:53 +02:00
}
@test "n lts" {
n lts
output="$(node --version)"
assert_equal "${output}" "v$(display_remote_version lts)"
2019-05-04 09:45:53 +02:00
}
@test "n latest" {
n latest
output="$(node --version)"
assert_equal "${output}" "v$(display_remote_version latest)"
2019-05-04 09:45:53 +02:00
}