remove solo

pull/7610/head
Nayan Gautam 4 years ago committed by gtmnayan
parent 92fa13c6d3
commit 7fdb154be0

@ -2,7 +2,6 @@ export default {
html: ` html: `
<p style="font-size: 32px; color: red;"></p> <p style="font-size: 32px; color: red;"></p>
`, `,
solo: true,
test({ assert, target, window, component }) { test({ assert, target, window, component }) {
const p = target.querySelector("p"); const p = target.querySelector("p");

@ -2,9 +2,8 @@ export default {
html: ` html: `
<p style="height: 40px; color: red;"></p> <p style="height: 40px; color: red;"></p>
`, `,
solo: true,
test({ assert, target, window, component }) { test({ assert, target, window }) {
const p = target.querySelector("p"); const p = target.querySelector("p");
const styles = window.getComputedStyle(p); const styles = window.getComputedStyle(p);
assert.equal(styles.color, "red"); assert.equal(styles.color, "red");

Loading…
Cancel
Save