"size-baseline": "node scripts/build.js runtime-dom runtime-core reactivity shared -f esm-bundler && cd packages/size-check && vite build",
"lint": "eslint --ext .ts packages/*/src/**.ts",
"format": "prettier --write --parser typescript \"packages/**/*.ts?(x)\"",
- "test": "node scripts/build.js vue -f global -d && jest --runInBand",
+ "test": "run-s test-unit test-e2e",
+ "test-unit": "jest --filter ./scripts/filter-unit.js",
+ "test-e2e": "node scripts/build.js vue -f global -d && jest --filter ./scripts/filter-e2e.js --runInBand",
"test-dts": "node scripts/build.js shared reactivity runtime-core runtime-dom -dt -f esm-bundler && npm run test-dts-only",
"test-dts-only": "tsc -p ./test-dts/tsconfig.json && tsc -p ./test-dts/tsconfig.build.json",
"release": "node scripts/release.js",
)
// not sure why but we just have to wait really long for this to
// pass consistently :/
- await transitionFinish(duration * 4)
+ await transitionFinish(duration * 4 + buffer)
expect(await html('#container')).toBe(
`<div class="" style="">a</div>` +
`<div class="" style="">b</div>` +
--- /dev/null
+const e2eTests = ['/Transition', '/TransitionGroup', '/examples/']
+
+module.exports = list => {
+ return {
+ filtered: list
+ .filter(t => e2eTests.some(tt => t.includes(tt)))
+ .map(test => ({ test }))
+ }
+}
+
+module.exports.e2eTests = e2eTests
--- /dev/null
+const { e2eTests } = require('./filter-e2e')
+
+module.exports = list => {
+ return {
+ filtered: list
+ .filter(t => !e2eTests.some(tt => t.includes(tt)))
+ .map(test => ({ test }))
+ }
+}