mirror of https://github.com/sveltejs/svelte
14 lines
366 B
14 lines
366 B
import * as assert from 'assert';
|
|
import CustomElement from './main.svelte';
|
|
|
|
export default function (target) {
|
|
new CustomElement({
|
|
target
|
|
});
|
|
|
|
const icon = target.querySelector('custom-element').shadowRoot.querySelector('.icon');
|
|
const before = getComputedStyle(icon, '::before');
|
|
|
|
assert.equal(before.content, JSON.stringify(String.fromCharCode(0xff)));
|
|
}
|