We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 148967f commit bacc1fdCopy full SHA for bacc1fd
test/test.sh
@@ -7,7 +7,8 @@ test_version_number(){
7
echo "running unit tests with Vue $1"
8
yarn install
9
yarn add vue@$1 vue-template-compiler@$1
10
- yarn test
+ yarn test:unit
11
+ yarn test:unit:karma
12
}
13
14
test_version_number "2.0.8"
test/unit/specs/TransitionStub.spec.js
@@ -2,7 +2,7 @@ import ComponentWithTransition from '~resources/components/component-with-transi
2
import TransitionStub from '~src/components/TransitionStub'
3
import mount from '~src/mount'
4
5
-describe.only('TransitionStub', () => {
+describe('TransitionStub', () => {
6
it('update synchronously when used as stubs for Transition', () => {
const wrapper = mount(ComponentWithTransition, {
stubs: {
0 commit comments