mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
b7d31adda4
The `node16` module resolution requires imports to use the `.js` file extension in type definitions. `@rollup/plugin-typescript` is needed to make this work with the Vite setup used by Mermaid. The module option for Mermaid internally is set to `nodenext`. This is needed to support `.json` imports. Note that setting `module` to `node16` or `nodenext` implies a matching `moduleResolution` value.
17 lines
499 B
JavaScript
17 lines
499 B
JavaScript
import { urlSnapshotTest } from '../../helpers/util.js';
|
|
|
|
describe('CSS injections', () => {
|
|
it('should not allow CSS injections outside of the diagram', () => {
|
|
urlSnapshotTest('http://localhost:9000/ghsa1.html', {
|
|
logLevel: 1,
|
|
flowchart: { htmlLabels: false },
|
|
});
|
|
});
|
|
it('should not allow adding styletags affecting the page', () => {
|
|
urlSnapshotTest('http://localhost:9000/ghsa3.html', {
|
|
logLevel: 1,
|
|
flowchart: { htmlLabels: false },
|
|
});
|
|
});
|
|
});
|