Skip to content

Commit c741864

Browse files
Bump chai from 4.4.1 to 5.1.1 (#37)
* Bump chai from 4.4.1 to 5.1.1 Bumps [chai](https://github.com/chaijs/chai) from 4.4.1 to 5.1.1. - [Release notes](https://github.com/chaijs/chai/releases) - [Changelog](https://github.com/chaijs/chai/blob/main/History.md) - [Commits](chaijs/chai@v4.4.1...v5.1.1) --- updated-dependencies: - dependency-name: chai dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Fix import of chai --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Illia Antypenko <[email protected]>
1 parent 7b87818 commit c741864

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"devDependencies": {
3131
"c8": "^10.1.2",
32-
"chai": "^4.2.0",
32+
"chai": "^5.1.1",
3333
"eslint": "^8.5.0",
3434
"mocha": "^10.0.0",
3535
"website-scraper": "^5.2.0"

test/existing-directory-plugin.test.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import chai from 'chai';
1+
import { expect } from 'chai';
22
import scrape from 'website-scraper';
33
import fs from 'fs-extra';
44
import ExistingDirectoryPlugin from '../index.js';
55

6-
const { expect } = chai;
7-
86
describe('Existing Directory Plugin', () => {
97
const directory = './test/directory-for-test';
108
const filename = directory + '/index.html';

0 commit comments

Comments
 (0)