From 2059ad313795ed720b96ede447602bf516dfdae8 Mon Sep 17 00:00:00 2001 From: PeterSchafer <101886095+PeterSchafer@users.noreply.github.com> Date: Thu, 6 Feb 2025 18:33:22 +0100 Subject: [PATCH] Merge pull request #5716 from snyk/chore/test_snyk_api 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