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/no-shadow-dom-with-slots/test.js

17 lines
490 B

import * as assert from 'assert';
import CustomElement from './main.svelte';
export default function (target) {
new CustomElement({
target
});
assert.equal(target.innerHTML, '<custom-element><other-element><h1>Hello world!</h1></other-element></custom-element>');
const el = target.querySelector('custom-element');
const h1 = el.querySelector('h1');
const { color } = getComputedStyle(h1);
assert.equal(h1.textContent, 'Hello world!');
assert.equal(color, 'rgb(0, 0, 255)');
}