From ef41c7d7884fa4fae8b6eba53d8fab0f584a97cf Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Wed, 16 Jul 2025 15:10:10 +0200 Subject: Remove unused jest dependency --- 2obj/features/steps/concat.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '2obj/features/steps/concat.js') diff --git a/2obj/features/steps/concat.js b/2obj/features/steps/concat.js index 2d9e5bd..94563b8 100644 --- a/2obj/features/steps/concat.js +++ b/2obj/features/steps/concat.js @@ -1,5 +1,5 @@ import { Given, When, Then } from '@cucumber/cucumber' -import { expect } from 'chai' +import assert from 'node:assert/strict' Given('the start value is {string}', function (string) { this.concat = string @@ -10,5 +10,5 @@ When('I concatenate {string}', function (string) { }) Then('the result should be {string}', function (string) { - expect(string).to.equal(this.concat) + assert.equal(string, this.concat) }) -- cgit v1.2.3