From 8ebd9ddef9b5b8ab5636a40854fb59fcb327fb39 Mon Sep 17 00:00:00 2001 From: Alexander Zeijlon Date: Mon, 8 Sep 2025 16:42:30 +0200 Subject: [PATCH] Fix broken Chai import Chai v6.0.0 introduced a breaking change where file imports now need to point at 'chai/index.js'. See the corresponding release note. --- tests/assertions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/assertions.js b/tests/assertions.js index a7012271..70c8a2c7 100644 --- a/tests/assertions.js +++ b/tests/assertions.js @@ -1,4 +1,4 @@ -import * as chai from '../node_modules/chai/chai.js'; +import * as chai from '../node_modules/chai/index.js'; import sinon from '../node_modules/sinon/pkg/sinon-esm.js'; import sinonChai from '../node_modules/sinon-chai/lib/sinon-chai.js';