diff --git a/package.json b/package.json index 6fc22bbc2d..9fb02e1ea0 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,6 @@ "micromatch": "4.0.2", "needle": "2.6.0", "open": "^7.0.3", - "ora": "5.3.0", "os-name": "^3.0.0", "promise-queue": "^2.2.5", "proxy-agent": "^3.1.1", diff --git a/test/smoke/spec/snyk_fix_spec.sh b/test/smoke/spec/snyk_fix_spec.sh new file mode 100644 index 0000000000..0b35a189d4 --- /dev/null +++ b/test/smoke/spec/snyk_fix_spec.sh @@ -0,0 +1,13 @@ +#shellcheck shell=sh + +Describe "Snyk fix command" + Describe "supported only with FF" + + It "by default snyk fix is not supported" + When run snyk fix + The status should be failure + The output should include "is not supported" + The stderr should equal "" + End + End +End