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
Bash

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