From decd8e9e3d98d79b33c56e1c1a53e11fb5047c4a Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Wed, 16 Jul 2025 16:39:09 +0200 Subject: Use node assertions as standard solution --- data-tables/features/steps/json.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'data-tables/features') diff --git a/data-tables/features/steps/json.js b/data-tables/features/steps/json.js index f9fe87c..edeb375 100644 --- a/data-tables/features/steps/json.js +++ b/data-tables/features/steps/json.js @@ -1,5 +1,5 @@ import { Given, When, Then } from '@cucumber/cucumber' -import { expect } from 'chai' +import assert from 'node:assert/strict' Given('the following books by Simon Frank are in the collection:', function (dataTable) { this.objects = [] @@ -45,6 +45,5 @@ When('I stringify it', function () { }) Then('I should get:', function (expected) { - expect(JSON.parse(expected)) - .to.deep.equal(JSON.parse(this.result)) + assert.deepEqual(JSON.parse(expected), JSON.parse(this.result)) }) -- cgit v1.2.3