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-missing-prop-warnings/test.js

20 lines
413 B

import * as assert from 'assert.js';
import { tick } from 'svelte';
import './main.svelte';
export default async function (target) {
const warnings = [];
const warn = console.warn;
console.warn = (warning) => {
warnings.push(warning);
};
target.innerHTML = '<my-app foo=yes />';
await tick();
assert.deepEqual(warnings, ["<my-app> was created without expected prop 'bar'"]);
console.warn = warn;
}