blob: a6cbfae8bc431b1480b5ce5d8567e8425f25c849 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import * as assert from 'node:assert/strict';
import { describe, it } from 'node:test';
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);
});
});
|