Skip to content

Commit c8293de

Browse files
committed
fix: tests
1 parent 4f9bd09 commit c8293de

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

packages-private/vapor-e2e-test/transition-group/App.vue

+16
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,20 @@ const interopClick = () => (items.value = ['b', 'c', 'd'])
126126
border: 1px solid #f7f7f7;
127127
margin-top: 15px;
128128
}
129+
130+
.test-move,
131+
.test-enter-active,
132+
.test-leave-active {
133+
transition: all 50ms cubic-bezier(0.55, 0, 0.1, 1);
134+
}
135+
136+
.test-enter-from,
137+
.test-leave-to {
138+
opacity: 0;
139+
transform: scaleY(0.01) translate(30px, 0);
140+
}
141+
142+
.test-leave-active {
143+
position: absolute;
144+
}
129145
</style>
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { createVaporApp, vaporInteropPlugin } from 'vue'
22
import App from './App.vue'
33
import '../../../packages/vue/__tests__/e2e/style.css'
4-
import '../transition/style.css'
54

65
createVaporApp(App).use(vaporInteropPlugin).mount('#app')

0 commit comments

Comments
 (0)