Skip to content

Commit e6e234f

Browse files
committed
update chai dep
1 parent 038aad0 commit e6e234f

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"safe-buffer": "^5.2.1"
3434
},
3535
"devDependencies": {
36-
"chai": "^4.4.1",
36+
"chai": "^5.0.3",
3737
"eslint": "^8.56.0",
3838
"eslint-config-standard": "^17.1.0",
3939
"eslint-plugin-import": "^2.29.1",

test/mo-compiler-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chai from 'chai';
1+
import * as chai from 'chai';
22
import { promisify } from 'util';
33
import path from 'path';
44
import { mo } from '../index.js';

test/mo-parser-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chai from 'chai';
1+
import * as chai from 'chai';
22
import { promisify } from 'util';
33
import path from 'path';
44
import { mo } from '../index.js';

test/po-compiler-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { EOL } from 'os';
22
import { promisify } from 'util';
33
import path from 'path';
44
import { readFile as fsReadFile } from 'fs';
5-
import chai from 'chai';
5+
import * as chai from 'chai';
66
import { po } from '../index.js';
77
import { fileURLToPath } from 'url';
88

test/po-obsolete-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { EOL } from 'os';
2-
import chai from 'chai';
2+
import * as chai from 'chai';
33
import { promisify } from 'util';
44
import path from 'path';
55
import fs from 'fs';

test/po-parser-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chai from 'chai';
1+
import * as chai from 'chai';
22
import { promisify } from 'util';
33
import path from 'path';
44
import fs from 'fs';

test/shared.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
import chai from 'chai';
3+
import * as chai from 'chai';
44
import { promisify } from 'util';
55
import path from 'path';
66
import { formatCharset, parseHeader, generateHeader, foldLine, parseNPluralFromHeadersSafely } from '../lib/shared.js';

0 commit comments

Comments
 (0)