2013-12-12 01:33:01 +00:00

10 lines
152 B
Bash

#!/usr/bin/env bats
@test "node should be in the path" {
[ "$(command -v node)" ]
}
@test "npm should be in the path" {
[ "$(command -v npm)" ]
}