From 166fedaba81d5a720a87067c1343f87ce746b0a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Scha=CC=88fer?= <101886095+PeterSchafer@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:59:51 +0100 Subject: [PATCH] chore: adapt expectation after changing endpoint --- test/smoke/spec/snyk_monitor_spec.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/smoke/spec/snyk_monitor_spec.sh b/test/smoke/spec/snyk_monitor_spec.sh index 7b238550e0..0158b9b531 100644 --- a/test/smoke/spec/snyk_monitor_spec.sh +++ b/test/smoke/spec/snyk_monitor_spec.sh @@ -13,21 +13,21 @@ Describe "Snyk monitor command" It "monitors a project in the same folder" When run run_monitor_in_subfolder The status should be success - The output should include "Explore this snapshot at https://app.eu.snyk.io/org/" + The output should include "Explore this snapshot at https://app.snyk.io/org/" The output should include "Notifications about newly disclosed issues related to these dependencies will be emailed to you." End It "monitors a project when pointing to a folder" When run snyk monitor ../fixtures/basic-npm The status should be success - The output should include "Explore this snapshot at https://app.eu.snyk.io/org/" + The output should include "Explore this snapshot at https://app.snyk.io/org/" The output should include "Notifications about newly disclosed issues related to these dependencies will be emailed to you." End It "monitors a project when pointing to a file" When run snyk monitor --file=../fixtures/basic-npm/package.json The status should be success - The output should include "Explore this snapshot at https://app.eu.snyk.io/org/" + The output should include "Explore this snapshot at https://app.snyk.io/org/" The output should include "Notifications about newly disclosed issues related to these dependencies will be emailed to you." End End