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/shadowdom-none-css/test.js

10 lines
326 B

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