summaryrefslogtreecommitdiff
path: root/packages/integrations/lit/test/sass.test.js
blob: 9bc039db6c5bfc859a34cd8252691fce08771c0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { expect } from 'chai';

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;
		}
		expect(error).to.be.null;
	});
});