Skip to content

Commit 8747e7c

Browse files
38elementseddyerburgh
authored andcommitted
docs: fix links (#665)
1 parent e9f3305 commit 8747e7c

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

Diff for: docs/api/mount.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ See [options](options.md)
1313

1414
- **Usage:**
1515

16-
Creates a [`Wrapper`](wrapper/README.md) that contains the mounted and rendered Vue component.
16+
Creates a [`Wrapper`](wrapper/) that contains the mounted and rendered Vue component.
1717

1818
**Without options:**
1919

Diff for: docs/api/render.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ See [options](./options.md)
2323

2424
Renders an object to a string and returns a [cheerio wrapper](https://github.com/cheeriojs/cheerio).
2525

26-
Cheerio is a jQuery-like library to traverse the DOM in Node.js. It has a similar API to the Vue Test Utils [`Wrapper`](wrapper/README.md).
26+
Cheerio is a jQuery-like library to traverse the DOM in Node.js. It has a similar API to the Vue Test Utils [`Wrapper`](wrapper/).
2727

2828
`render` uses [`vue-server-renderer`](https://ssr.vuejs.org/en/basic.html) under the hood, to render a component to static HTML.
2929

Diff for: docs/api/shallowMount.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ See [options](./options.md)
2222

2323
- **Usage:**
2424

25-
Like [`mount`](mount.md), it creates a [`Wrapper`](wrapper/README.md) that contains the mounted and rendered Vue component, but with stubbed child components.
25+
Like [`mount`](mount.md), it creates a [`Wrapper`](wrapper/) that contains the mounted and rendered Vue component, but with stubbed child components.
2626

2727
**Without options:**
2828

Diff for: docs/api/wrapper-array/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WrapperArray
22

3-
A `WrapperArray` is an object that contains an array of [`Wrappers`](../wrapper/README.md), and methods to test the `Wrappers`.
3+
A `WrapperArray` is an object that contains an array of [`Wrappers`](../wrapper/), and methods to test the `Wrappers`.
44

55
## Properties
66

@@ -24,4 +24,4 @@ A `WrapperArray` is an object that contains an array of [`Wrappers`](../wrapper/
2424
!!!include(docs/api/wrapper-array/setData.md)!!!
2525
!!!include(docs/api/wrapper-array/setMethods.md)!!!
2626
!!!include(docs/api/wrapper-array/setProps.md)!!!
27-
!!!include(docs/api/wrapper-array/trigger.md)!!!
27+
!!!include(docs/api/wrapper-array/trigger.md)!!!

Diff for: docs/api/wrapper/find.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## find(selector)
22

3-
Returns [`Wrapper`](README.md) of first DOM node or Vue component matching selector.
3+
Returns [`Wrapper`](../wrapper/) of first DOM node or Vue component matching selector.
44

55
Use any valid [selector](../selectors.md).
66

@@ -31,4 +31,4 @@ const fooRef = wrapper.find({ ref: 'foo' })
3131
expect(fooRef.is(Foo)).toBe(true)
3232
```
3333

34-
- **See also:** [Wrapper](README.md)
34+
- **See also:** [Wrapper](../wrapper/)

Diff for: docs/api/wrapper/findAll.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## findAll(selector)
22

3-
Returns a [`WrapperArray`](../wrapper-array/README.md).
3+
Returns a [`WrapperArray`](../wrapper-array/).
44

55
Use any valid [selector](../selectors.md).
66

@@ -23,4 +23,4 @@ const bar = wrapper.findAll(Bar).at(0)
2323
expect(bar.is(Bar)).toBe(true)
2424
```
2525

26-
- **See also:** [Wrapper](README.md)
26+
- **See also:** [Wrapper](../wrapper/)

Diff for: docs/ja/api/mount.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- **使い方:**
1515

16-
マウントされて描画された Vue コンポーネントを含む [`Wrapper`](./wrapper/README.md) を生成します。
16+
マウントされて描画された Vue コンポーネントを含む [`Wrapper`](./wrapper/) を生成します。
1717

1818
**オプションなし:**
1919

@@ -125,4 +125,4 @@ describe('Foo', () => {
125125
})
126126
```
127127

128-
- **参照:** [`Wrapper`](./wrapper/README.md)
128+
- **参照:** [`Wrapper`](./wrapper/)

Diff for: docs/ja/api/render.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
オブジェクトを文字列にレンダリングして [cheerio wrapper](https://github.com/cheeriojs/cheerio) を返します。
2525

2626
Cheerio は Node.js で jQuery のように DOM をスキャンするためのライブラリです。
27-
これは Vue Test Utils の [`Wrapper`](wrapper/README.md) に似ているAPIを持っています。
27+
これは Vue Test Utils の [`Wrapper`](wrapper/) に似ているAPIを持っています。
2828

2929
コンポーネントを静的なHTMLにレンダリングするために、`render` は内部で [`vue-server-renderer`](https://ssr.vuejs.org/en/basic.html) を使用します。
3030

Diff for: docs/ja/api/shallowMount.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
- **使い方:**
2424

25-
[`mount`](mount.md)のようにマウントされて描画された Vue コンポーネントを含む [`Wrapper`](./wrapper/README.md) を生成しますが、  
25+
[`mount`](mount.md)のようにマウントされて描画された Vue コンポーネントを含む [`Wrapper`](./wrapper/) を生成しますが、  
2626
子コンポーネントはスタブされたコンポーネントです。
2727

2828
**オプションなし:**

Diff for: docs/ja/api/wrapper-array/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WrapperArray
22

3-
`WrapperArray` は、[Wrapper](../wrapper/README.md) の配列と `Wrapper` をテストするメソッドを含むオブジェクトです。
3+
`WrapperArray` は、[Wrapper](../wrapper/) の配列と `Wrapper` をテストするメソッドを含むオブジェクトです。
44

55
## プロパティ
66

@@ -24,4 +24,4 @@
2424
!!!include(docs/ja/api/wrapper-array/setData.md)!!!
2525
!!!include(docs/ja/api/wrapper-array/setMethods.md)!!!
2626
!!!include(docs/ja/api/wrapper-array/setProps.md)!!!
27-
!!!include(docs/ja/api/wrapper-array/trigger.md)!!!
27+
!!!include(docs/ja/api/wrapper-array/trigger.md)!!!

Diff for: docs/ja/api/wrapper/find.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## find(selector)
22

3-
最初の DOM ノードの [Wrapper](./README.md)、またはセレクタで一致した Vue コンポーネントを返します。
3+
最初の DOM ノードの [Wrapper](../wrapper/)、またはセレクタで一致した Vue コンポーネントを返します。
44

55
有効な[セレクタ](../selectors.md)を使用してください。
66

@@ -31,4 +31,4 @@ const fooRef = wrapper.find({ ref: 'foo' })
3131
expect(fooRef.is(Foo)).toBe(true)
3232
```
3333

34-
- **参照:** [Wrapper](./README.md)
34+
- **参照:** [Wrapper](../wrapper/)

Diff for: docs/ja/api/wrapper/findAll.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## findAll(selector)
22

3-
[`WrapperArray`](../wrapper-array/README.md)を返します。
3+
[`WrapperArray`](../wrapper-array/)を返します。
44

55
有効な[セレクタ](../selectors.md)を使用してください。
66

@@ -23,4 +23,4 @@ const bar = wrapper.findAll(Bar).at(0)
2323
expect(bar.is(Bar)).toBe(true)
2424
```
2525

26-
- **参照:** [Wrapper](./README.md)
26+
- **参照:** [Wrapper](../wrapper/)

0 commit comments

Comments
 (0)