diff options
Diffstat (limited to 'packages/integrations/lit/test/sass.test.js')
-rw-r--r-- | packages/integrations/lit/test/sass.test.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/integrations/lit/test/sass.test.js b/packages/integrations/lit/test/sass.test.js index 9bc039db6..1f1ce19c5 100644 --- a/packages/integrations/lit/test/sass.test.js +++ b/packages/integrations/lit/test/sass.test.js @@ -1,4 +1,5 @@ -import { expect } from 'chai'; +import { describe, it } from 'node:test'; +import * as assert from 'node:assert/strict'; describe('check', () => { it('should be able to load sass', async () => { @@ -9,6 +10,6 @@ describe('check', () => { } catch (e) { error = e; } - expect(error).to.be.null; + assert.equal(error, null); }); }); |