diff options
Diffstat (limited to 'packages/integrations/lit/test/sass.test.js')
-rw-r--r-- | packages/integrations/lit/test/sass.test.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/integrations/lit/test/sass.test.js b/packages/integrations/lit/test/sass.test.js new file mode 100644 index 000000000..9bc039db6 --- /dev/null +++ b/packages/integrations/lit/test/sass.test.js @@ -0,0 +1,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; + }); +}); |