summaryrefslogtreecommitdiff
path: root/packages/integrations/lit/test/sass.test.js
diff options
context:
space:
mode:
authorGravatar Mohamed <10786768+xMohamd@users.noreply.github.com> 2024-02-02 13:17:32 +0200
committerGravatar GitHub <noreply@github.com> 2024-02-02 11:17:32 +0000
commitf4c2ba870eb8c74aa2f235d008dd0a30d70a4723 (patch)
tree681194a4ac4d68695c29c7c05a9dd0596b19f12a /packages/integrations/lit/test/sass.test.js
parent587b373009e7399ab8ac94e17bb40eb5f5ac8082 (diff)
downloadastro-f4c2ba870eb8c74aa2f235d008dd0a30d70a4723.tar.gz
astro-f4c2ba870eb8c74aa2f235d008dd0a30d70a4723.tar.zst
astro-f4c2ba870eb8c74aa2f235d008dd0a30d70a4723.zip
chore(@astrojs/integrations/lit): use Node.js for testing (#9944)
Diffstat (limited to 'packages/integrations/lit/test/sass.test.js')
-rw-r--r--packages/integrations/lit/test/sass.test.js5
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);
});
});