Update test

This commit is contained in:
Adam Wathan 2020-10-15 12:47:43 -04:00
parent 225a0fa6a7
commit 1c8c078d2c

View File

@ -632,7 +632,6 @@ test('adjacent rules are collapsed after being applied', () => {
const expected = `
.foo:hover {
--bg-opacity: 1;
background-color: #fff;
background-color: rgba(255, 255, 255, var(--bg-opacity));
opacity: 0.5;
}
@ -1010,7 +1009,6 @@ test('you can apply classes in a nested rule', () => {
.selector {
&:hover {
--text-opacity: 1;
color: #fff;
color: rgba(255, 255, 255, var(--text-opacity));
}
}