test: adjust mount import source

This commit is contained in:
chenjiahan 2020-11-08 20:33:20 +08:00
parent 56fc7f7712
commit a7df6cfebb
26 changed files with 26 additions and 26 deletions

View File

@ -1,5 +1,5 @@
import ActionBar from '..';
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
test('should allow to disable safe-area-inset-bottom prop', () => {
const wrapper = mount(ActionBar, {

View File

@ -1,4 +1,4 @@
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
import AddressList from '..';
const list = [

View File

@ -1,5 +1,5 @@
import Badge from '..';
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
test('should not render when badge is empty string', () => {
const wrapper = mount(Badge, {

View File

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

View File

@ -1,6 +1,6 @@
import Cell from '..';
import CellGroup from '../../cell-group';
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
test('click event', () => {
const click = jest.fn();

View File

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

View File

@ -1,5 +1,5 @@
import ContactCard from '..';
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
test('should emit click event after clicking the ContactCard', () => {
const click = jest.fn();

View File

@ -1,5 +1,5 @@
import ContactList from '..';
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
const contactInfo = {
name: 'test',

View File

@ -1,5 +1,5 @@
import DatetimePicker from '..';
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
test('confirm & cancel event', () => {
const onConfirm = jest.fn();

View File

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

View File

@ -1,4 +1,4 @@
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
test('click grid item', () => {
const onClick = jest.fn();

View File

@ -1,5 +1,5 @@
import Icon from '..';
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
test('render icon with builtin icon name', () => {
const wrapper = mount(Icon, {

View File

@ -1,4 +1,4 @@
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
import VanImage from '..';
test('click event', () => {

View File

@ -1,4 +1,4 @@
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
import Loading from '..';
test('size prop', () => {

View File

@ -1,4 +1,4 @@
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
import Overlay from '..';
test('z-index prop', () => {

View File

@ -1,4 +1,4 @@
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
import Paginaion from '..';
test('render prev-text & next-text slot', () => {

View File

@ -1,5 +1,5 @@
import PasswordInput from '..';
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
test('focus event', () => {
const focus = jest.fn();

View File

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

View File

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

View File

@ -1,4 +1,4 @@
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
import Sidebar from '..';
test('click event & change event', () => {

View File

@ -1,4 +1,4 @@
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
import Skeleton from '..';
test('row-width array', () => {

View File

@ -1,4 +1,4 @@
import { mount } from '../../../test';
import { mount } from '@vue/test-utils';
test('icon slot', () => {
const wrapper = mount({

View File

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

View File

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

View File

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

View File

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