blob: 1f1ce19c5fd0b9fdd65563de48ad08a344f0fdc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { describe, it } from 'node:test';
import * as assert from 'node:assert/strict';
describe('check', () => {
it('should be able to load sass', async () => {
let error = null;
try {
await import(new URL('../server-shim.js', import.meta.url));
await import('sass');
} catch (e) {
error = e;
}
assert.equal(error, null);
});
});
|