Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/eddyerburgh/avoriaz
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyerburgh committed Jul 11, 2017
2 parents a14818b + 5124064 commit c9dd0f4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const wrapper = mount(Foo, {
propsData: { clickHandler },
});

wrapper.dispatch('click');
wrapper.trigger('click');
```

##### Assert wrapper contains a child
Expand Down
8 changes: 4 additions & 4 deletions docs/api/mount/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('Foo', () => {
#### With Vue options
```js
import { mount } from 'avoriaz';
import { expect } from 'chai';]
import { expect } from 'chai';
import Foo from './Foo.vue';

describe('Foo', () => {
Expand All @@ -59,7 +59,7 @@ describe('Foo', () => {
#### Attach to DOM
```js
import { mount } from 'avoriaz';
import { expect } from 'chai';]
import { expect } from 'chai';
import Foo from './Foo.vue';

describe('Foo', () => {
Expand All @@ -74,7 +74,7 @@ describe('Foo', () => {
#### Default and named slots
```js
import { mount } from 'avoriaz';
import { expect } from 'chai';]
import { expect } from 'chai';
import Foo from './Foo.vue';
import Bar from './Bar.vue';
import FooBar from './FooBar.vue';
Expand All @@ -95,7 +95,7 @@ describe('Foo', () => {
#### Adding globals
```js
import { mount } from 'avoriaz';
import { expect } from 'chai';]
import { expect } from 'chai';
import Foo from './Foo.vue';

describe('Foo', () => {
Expand Down
8 changes: 4 additions & 4 deletions docs/api/shallow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('Foo', () => {
#### With Vue options
```js
import { shallow } from 'avoriaz';
import { expect } from 'chai';]
import { expect } from 'chai';
import Foo from './Foo.vue';

describe('Foo', () => {
Expand All @@ -55,7 +55,7 @@ describe('Foo', () => {
#### Attach to DOM
```js
import { shallow } from 'avoriaz';
import { expect } from 'chai';]
import { expect } from 'chai';
import Foo from './Foo.vue';

describe('Foo', () => {
Expand All @@ -70,7 +70,7 @@ describe('Foo', () => {
#### Default and named slots
```js
import { shallow } from 'avoriaz';
import { expect } from 'chai';]
import { expect } from 'chai';
import Foo from './Foo.vue';
import Bar from './Bar.vue';
import FooBar from './FooBar.vue';
Expand All @@ -91,7 +91,7 @@ describe('Foo', () => {
#### Adding globals
```js
import { shallow } from 'avoriaz';
import { expect } from 'chai';]
import { expect } from 'chai';
import Foo from './Foo.vue';

describe('Foo', () => {
Expand Down

0 comments on commit c9dd0f4

Please sign in to comment.