diff options
Diffstat (limited to '4outline/features/steps/addition.js')
| -rw-r--r-- | 4outline/features/steps/addition.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/4outline/features/steps/addition.js b/4outline/features/steps/addition.js index 0752b32..a962c7e 100644 --- a/4outline/features/steps/addition.js +++ b/4outline/features/steps/addition.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 {int}', function (int) { this.calc = int @@ -10,5 +10,5 @@ When('I add {int}', function (int) { }) Then('the result should be {int}', function (int) { - expect(this.calc).to.equal(int) + assert.equal(this.calc, int) }) |
