From 8d607ca4fd3fc1470207fdadca7aff78573a5542 Mon Sep 17 00:00:00 2001 From: Alex Moinet Date: Thu, 17 Nov 2022 14:33:28 +0000 Subject: [PATCH] Update node maze-runner version to v7 (#1871) * Update node maze-runner version to v7 * Update maze-runner version for running node locally, and fix missing-step typo --- dockerfiles/Dockerfile.node | 2 +- test/node/Gemfile | 2 +- test/node/features/cause.feature | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/Dockerfile.node b/dockerfiles/Dockerfile.node index ce48bc8315..b29044d015 100644 --- a/dockerfiles/Dockerfile.node +++ b/dockerfiles/Dockerfile.node @@ -21,7 +21,7 @@ RUN npm pack --verbose packages/plugin-koa/ RUN npm pack --verbose packages/plugin-restify/ # The maze-runner node tests -FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner-releases:latest-v6-cli as node-maze-runner +FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner-releases:latest-v7-cli as node-maze-runner WORKDIR /app/ COPY packages/node/ . COPY test/node/features test/node/features diff --git a/test/node/Gemfile b/test/node/Gemfile index 6e35b5c314..bd133a4451 100644 --- a/test/node/Gemfile +++ b/test/node/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' -gem 'bugsnag-maze-runner', git: 'https://github.com/bugsnag/maze-runner', tag: 'v6.8.0' +gem 'bugsnag-maze-runner', git: 'https://github.com/bugsnag/maze-runner', tag: 'v7.6.0' # Use a branch of Maze Runner #gem 'bugsnag-maze-runner', git: 'https://github.com/bugsnag/maze-runner', branch: 'tms/use-maze-check' diff --git a/test/node/features/cause.feature b/test/node/features/cause.feature index 8253fd5cef..1699c16cd6 100644 --- a/test/node/features/cause.feature +++ b/test/node/features/cause.feature @@ -18,7 +18,7 @@ Scenario: Error thrown with a cause in the constructor And the error payload field "events.0.exceptions.1.errorClass" equals "Error" And the error payload field "events.0.exceptions.1.message" equals "I am the cause" And the error payload field "events.0.exceptions.1.type" equals "nodejs" - And the error payload field "events.0.exceptions.1.stacktrace" is an non-empty array + And the error payload field "events.0.exceptions.1.stacktrace" is a non-empty array Scenario: Error thrown with a cause assigned When I run the service "cause" with the command "node scenarios/error_assignment"