bump vue-test-utils (#1338)

This commit is contained in:
neverland 2018-06-27 11:56:14 +08:00 committed by GitHub
parent 30928595d3
commit 83ab9b1917
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
35 changed files with 53 additions and 61 deletions

View File

@ -56,8 +56,8 @@
"vue": ">= 2.5.0"
},
"devDependencies": {
"@vue/server-test-utils": "^1.0.0-beta.16",
"@vue/test-utils": "^1.0.0-beta.16",
"@vue/server-test-utils": "^1.0.0-beta.20",
"@vue/test-utils": "^1.0.0-beta.20",
"autoprefixer": "^8.6.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",

View File

@ -1,9 +1,9 @@
import { shallowMount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
import Actionsheet from '../';
test('callback events', () => {
const callback = jest.fn();
const wrapper = shallowMount(Actionsheet, {
const wrapper = mount(Actionsheet, {
propsData: {
actions: [
{ name: 'Option', callback },

View File

@ -216,9 +216,9 @@ export default create({
assignAreaValues(values) {
Object.assign(this.data, {
province: values[0].name,
city: values[1].name,
county: values[2].name
province: values[0] ? values[0].name : '',
city: values[1] ? values[1].name : '',
county: values[2] ? values[2].name : ''
});
},

View File

@ -1,9 +1,8 @@
/* eslint-disable camelcase */
import { mount } from '@vue/test-utils';
import { renderToString } from '@vue/server-test-utils';
import AddressEdit from '../';
import areaList from '../../area/demo/area.simple';
import { later, transitionStub } from '../../../test/utils';
import { mount, later, transitionStub } from '../../../test/utils';
transitionStub();

View File

@ -1,7 +1,6 @@
import Area from '..';
import { mount } from '@vue/test-utils';
import areaList from '../demo/area.simple';
import { later, triggerDrag } from '../../../test/utils';
import { mount, later, triggerDrag } from '../../../test/utils';
const firstOption = [
{ code: '110000', name: '北京市' },

View File

@ -1,4 +1,4 @@
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
import Badge from '../';
import BadgeGroup from '../../badge-group';

View File

@ -1,6 +1,5 @@
import CellSwipe from '..';
import { mount } from '@vue/test-utils';
import { triggerDrag } from '../../../test/utils';
import { mount, triggerDrag } from '../../../test/utils';
const defaultProps = {
propsData: {

View File

@ -1,5 +1,5 @@
import Cell from '..';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('click event', () => {
const wrapper = mount(Cell);

View File

@ -1,6 +1,6 @@
import Checkbox from '..';
import CheckboxGroup from '../../checkbox-group';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('switch checkbox', () => {
const wrapper = mount(Checkbox);

View File

@ -1,6 +1,6 @@
import Collapse from '..';
import CollapseItem from '../../collapse-item';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
const component = {
template: `

View File

@ -1,8 +1,7 @@
import ContactCard from '..';
import ContactList from '../../contact-list';
import ContactEdit from '../../contact-edit';
import { mount } from '@vue/test-utils';
import { later } from '../../../test/utils';
import { mount, later } from '../../../test/utils';
const contactInfo = {
name: 'test',

View File

@ -1,6 +1,6 @@
import CouponList from '../../coupon-list';
import CouponCell from '../../coupon-cell';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('exchange coupon', () => {
const wrapper = mount(CouponList);

View File

@ -1,8 +1,7 @@
import Vue from 'vue';
import Dialog from '..';
import DialogVue from '../dialog';
import { mount } from '@vue/test-utils';
import { later, transitionStub } from '../../../test/utils';
import { mount, later, transitionStub } from '../../../test/utils';
transitionStub();

View File

@ -1,6 +1,5 @@
import Field from '../';
import { mount } from '@vue/test-utils';
import { later } from '../../../test/utils';
import { mount, later } from '../../../test/utils';
test('input event', () => {
const wrapper = mount(Field);

View File

@ -1,6 +1,6 @@
import BigBtn from '../../goods-action-big-btn';
import SmallBtn from '../../goods-action-mini-btn';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('big btn click event', () => {
const wrapper = mount(BigBtn);

View File

@ -1,8 +1,7 @@
import Vue from 'vue';
import ImagePreview from '..';
import ImagePreviewVue from '../image-preview';
import { mount } from '@vue/test-utils';
import { triggerDrag } from '../../../test/utils';
import { mount, triggerDrag } from '../../../test/utils';
const images = [
'https://img.yzcdn.cn/1.png',

View File

@ -1,6 +1,5 @@
import List from '..';
import { mount } from '@vue/test-utils';
import { later } from '../../../test/utils';
import { mount, later } from '../../../test/utils';
test('load event', async() => {
const wrapper = mount(List);

View File

@ -1,5 +1,5 @@
import NumberKeyboard from '../';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
function mockTouch(wrapper, event, keyIndex) {
const key = wrapper.element.querySelectorAll('.van-key')[keyIndex];

View File

@ -59,7 +59,7 @@ export default create({
},
created() {
this.$parent && this.$parent.children.push(this);
this.$parent.children && this.$parent.children.push(this);
},
mounted() {
@ -67,7 +67,7 @@ export default create({
},
destroyed() {
this.$parent && this.$parent.children.splice(this.$parent.children.indexOf(this), 1);
this.$parent.children && this.$parent.children.splice(this.$parent.children.indexOf(this), 1);
},
watch: {

View File

@ -1,7 +1,6 @@
import Picker from '../';
import PickerColumn from '../PickerColumn';
import { mount } from '@vue/test-utils';
import { triggerDrag } from '../../../test/utils';
import { mount, triggerDrag } from '../../../test/utils';
const simpleColumn = ['1990', '1991', '1992', '1993', '1994', '1995'];
const columns = [

View File

@ -1,9 +1,7 @@
import Vue from 'vue';
import Popup from '../';
import { mount, TransitionStub } from '@vue/test-utils';
import { triggerDrag } from '../../../test/utils';
import { mount, triggerDrag, transitionStub } from '../../../test/utils';
Vue.component('transition', TransitionStub);
transitionStub();
let wrapper;
afterEach(() => {

View File

@ -1,5 +1,5 @@
import Progress from '../';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('calc width', () => {
const wrapper = mount(Progress, {

View File

@ -1,6 +1,5 @@
import PullRefresh from '..';
import { mount } from '@vue/test-utils';
import { trigger, triggerDrag } from '../../../test/utils';
import { mount, trigger, triggerDrag } from '../../../test/utils';
test('change head content when pulling down', () => {
const wrapper = mount(PullRefresh, {

View File

@ -1,5 +1,5 @@
import Rate from '../';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('change event', () => {
const wrapper = mount(Rate, {

View File

@ -1,5 +1,5 @@
import Search from '..';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('listen input event', () => {
const wrapper = mount(Search);

View File

@ -1,6 +1,5 @@
import Slider from '..';
import { mount } from '@vue/test-utils';
import { triggerDrag, trigger } from '../../../test/utils';
import { mount, triggerDrag, trigger } from '../../../test/utils';
Element.prototype.getBoundingClientRect = jest.fn(() => ({ width: 100, left: 0 }));

View File

@ -1,5 +1,5 @@
import Stepper from '..';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('disabled stepper', () => {
const wrapper = mount(Stepper, {

View File

@ -1,5 +1,5 @@
import SubmitBar from '../';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('submit', () => {
const wrapper = mount(SubmitBar, {

View File

@ -1,7 +1,6 @@
import Swipe from '..';
import SwipeItem from '../../swipe-item';
import { mount } from '@vue/test-utils';
import { triggerDrag, later } from '../../../test/utils';
import { mount, triggerDrag, later } from '../../../test/utils';
const Component = {
template: `

View File

@ -1,5 +1,5 @@
import SwitchCell from '..';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('emit event', () => {
const wrapper = mount(SwitchCell);

View File

@ -1,5 +1,5 @@
import Switch from '..';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('emit event', () => {
const wrapper = mount(Switch);

View File

@ -1,5 +1,5 @@
import TreeSelect from '../';
import { mount } from '@vue/test-utils';
import { mount } from '../../../test/utils';
test('empty list', () => {
expect(mount(TreeSelect)).toMatchSnapshot();

View File

@ -1,6 +1,5 @@
import Uploader from '..';
import { mount } from '@vue/test-utils';
import { later } from '../../../test/utils';
import { mount, later } from '../../../test/utils';
window.File = function() {
this.size = 10000;

View File

@ -1,5 +1,12 @@
import Vue from 'vue';
import { TransitionStub } from '@vue/test-utils';
import { mount, TransitionStub } from '@vue/test-utils';
// prevent vue warning log
Vue.config.silent = true;
export {
mount
};
// Trigger pointer/touch event
export function trigger(wrapper, eventName, x = 0, y = 0) {

View File

@ -137,15 +137,15 @@
source-map "^0.5.6"
vue-template-es2015-compiler "^1.6.0"
"@vue/server-test-utils@^1.0.0-beta.16":
version "1.0.0-beta.16"
resolved "https://registry.yarnpkg.com/@vue/server-test-utils/-/server-test-utils-1.0.0-beta.16.tgz#6fee1d086171b5581321de54b21ed16ef464813f"
"@vue/server-test-utils@^1.0.0-beta.20":
version "1.0.0-beta.20"
resolved "https://registry.yarnpkg.com/@vue/server-test-utils/-/server-test-utils-1.0.0-beta.20.tgz#d71e3bacfc381a65b8c262a1787b1518b5017f35"
dependencies:
cheerio "^1.0.0-rc.2"
"@vue/test-utils@^1.0.0-beta.16":
version "1.0.0-beta.16"
resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.0.0-beta.16.tgz#dcf7a30304391422e382b5f97db6eb9508112906"
"@vue/test-utils@^1.0.0-beta.20":
version "1.0.0-beta.20"
resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.0.0-beta.20.tgz#ef4505341b802f3de1c06b3cb8651378c87371fa"
dependencies:
lodash "^4.17.4"