You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/custom-elements/samples/global-styles/test.js

13 lines
313 B

import * as assert from 'assert';
import CustomElement from './main.svelte';
export default function (target) {
new CustomElement({
target
});
const style = target.querySelector('custom-element').shadowRoot.querySelector('style');
assert.equal(style.textContent, 'p.active{color:rgb(128, 128, 128)}');
}