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/runtime/samples/spread-element/_config.js

20 lines
532 B

export default {
solo: true,
html: `<div data-foo="bar">red</div>`,
test ( assert, component, target ) {
const div = target.querySelector( 'div' );
assert.equal( div.dataset.foo, 'bar' );
component.set({ color: 'blue', props: { 'data-foo': 'baz' } });
assert.equal( target.innerHTML, `<div data-foo="baz">blue</div>` );
assert.equal( div.dataset.foo, 'baz' );
component.set({ color: 'blue', props: {} });
assert.equal( target.innerHTML, `<div>blue</div>` );
assert.equal( div.dataset.foo, undefined );
}
};