Skip to content

Commit bacc1fd

Browse files
committed
test: only run unit tests in compatibility script
1 parent 148967f commit bacc1fd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/test.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ test_version_number(){
77
echo "running unit tests with Vue $1"
88
yarn install
99
yarn add vue@$1 vue-template-compiler@$1
10-
yarn test
10+
yarn test:unit
11+
yarn test:unit:karma
1112
}
1213

1314
test_version_number "2.0.8"

test/unit/specs/TransitionStub.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import ComponentWithTransition from '~resources/components/component-with-transi
22
import TransitionStub from '~src/components/TransitionStub'
33
import mount from '~src/mount'
44

5-
describe.only('TransitionStub', () => {
5+
describe('TransitionStub', () => {
66
it('update synchronously when used as stubs for Transition', () => {
77
const wrapper = mount(ComponentWithTransition, {
88
stubs: {

0 commit comments

Comments
 (0)