10 lines
152 B
Bash
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)" ]
|
|
}
|