diff options
| author | Eugen Wissner <belka@caraus.de> | 2025-07-16 15:10:10 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2025-07-16 15:10:10 +0200 |
| commit | ef41c7d7884fa4fae8b6eba53d8fab0f584a97cf (patch) | |
| tree | 1603a612b59e806e31bcdfd1dd73638aa08b2f4b /1args/features/steps/concat.js | |
| parent | 738f4f2bdb7228b8f2f9bd74979adf361cf1b293 (diff) | |
| download | cucumber-js-demo-ef41c7d7884fa4fae8b6eba53d8fab0f584a97cf.tar.gz | |
Remove unused jest dependency
Diffstat (limited to '1args/features/steps/concat.js')
| -rw-r--r-- | 1args/features/steps/concat.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/1args/features/steps/concat.js b/1args/features/steps/concat.js index 0d8cfd9..529d697 100644 --- a/1args/features/steps/concat.js +++ b/1args/features/steps/concat.js @@ -1,9 +1,9 @@ import { When, Then } from '@cucumber/cucumber' -import { expect } from 'chai' +import assert from 'node:assert/strict' When('I concatenate {string} and {string}', function (string, string2) { }) Then('the result should be {string}', function (string) { - expect(string).to.equal("Georg Cantor") + assert.equal(string, 'Georg Cantor') }) |
