Skip to content

Commit 3c446c0

Browse files
committed
fix urls
1 parent a3a69e3 commit 3c446c0

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

src/content/docs/ja/develop/Debug/tests/WebDriver/Example/selenium.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ import TranslationNote from '@components/i18n/TranslationNote.astro';
7676

7777
## テスト
7878

79-
[WebdriverIO のテスト・スイート](/ja/develop/tests/webdriver/example/webdriverio/#設定) とは異なり、Selenium にはテスト・スイートが付属しておらず、テスト・スイートの構築は開発者に任されています。
79+
[WebdriverIO のテスト・スイート](/ja/develop/debug/tests/webdriver/example/webdriverio/#設定) とは異なり、Selenium にはテスト・スイートが付属しておらず、テスト・スイートの構築は開発者に任されています。
8080
ここでは [Mocha] を選択しました。Mocha は WebDrivers とは関係のない、比較的中立的なライブラリなので、スクリプトのすべてを正しい順序で設定するには少しばかり作業が必要になります。
8181
[Mocha] はデフォルトで `test/test.js` にテスト・ファイルを用意する必要があります。では、早速作成してみましょう。
8282

@@ -167,7 +167,7 @@ describe('Hello Tauri', () => {
167167

168168
もし「JS テスト・フレームワーク」に慣れ親しんでいる方であれば、`describe``it``expect` などは見覚えがあるはずです。また、mocha の設定(セットアップ)と解除(ティアダウン)を行なうための、やや複雑な`before()``after()`コールバックも用意されています。
169169
テスト本体ではない行には、セットアップ・コードとティアダウン・コードを説明するコメントの記載があります。
170-
[WebdriverIO のテスト仕様](/ja/develop/tests/webdriver/example/webdriverio/#テスト仕様)の「Spec ファイル」に慣れている場合は、WebDriver 関連の項目をさらにいくつか設定する必要があるため、テスト以外のコードがより多くなっていることに気付くでしょう。
170+
[WebdriverIO のテスト仕様](/ja/develop/debug/tests/webdriver/example/webdriverio/#テスト仕様)の「Spec ファイル」に慣れている場合は、WebDriver 関連の項目をさらにいくつか設定する必要があるため、テスト以外のコードがより多くなっていることに気付くでしょう。
171171

172172
## テスト・スイートの実行
173173

@@ -204,7 +204,7 @@ Done in 0.93s.
204204

205205
</TranslationNote>
206206

207-
[モデル・アプリケーションの基本設定]: /ja/develop/tests/webdriver/example/
207+
[モデル・アプリケーションの基本設定]: /ja/develop/debug/tests/webdriver/example/
208208
[selenium]: https://selenium.dev/ja/
209209
[完成版モデル・プロジェクト]: https://github.com/chippers/hello_tauri
210210
[mocha]: https://mochajs.org/

src/content/docs/ja/develop/Debug/tests/WebDriver/Example/webdriverio.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Spec Reporter 部には、`test/specs/example.e2e.js` ファイルからの三
211211

212212
[WebdriverIO] テスト・スイートを使用することで、わずか数行の設定と一つのコマンド実行だけで、Tauri アプリケーションの e2e テストを簡単に実行できました! さらに素晴らしいのは、アプリケーションを一切修正する必要がなかったということです。
213213

214-
[モデル・アプリケーションの基本設定]: /ja/develop/tests/webdriver/example/
214+
[モデル・アプリケーションの基本設定]: /ja/develop/debug/tests/webdriver/example/
215215
[webdriverio]: https://webdriver.io/ja/
216216
[完成版モデル・アプリケーション]: https://github.com/chippers/hello_tauri
217217
[mocha]: https://mochajs.org/

src/content/docs/ja/develop/Debug/tests/WebDriver/ci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
working-directory: webdriver/webdriverio
9393
```
9494
95-
[予め作成したテスト事例]: /ja/develop/tests/webdriver/example/webdriverio/
95+
[予め作成したテスト事例]: /ja/develop/debug/tests/webdriver/example/webdriverio/
9696
[webdriver]: https://www.w3.org/TR/webdriver/
9797
[`tauri-driver`]: https://crates.io/crates/tauri-driver
9898
[webdriverio]: https://webdriver.io/

src/content/docs/ja/develop/Debug/tests/WebDriver/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ import { LinkCard, CardGrid } from '@astrojs/starlight/components';
6262
<CardGrid>
6363
<LinkCard
6464
title="モデル・アプリケーションの基本設定"
65-
href="/ja/develop/tests/webdriver/example/"
65+
href="/ja/develop/debug/tests/webdriver/example/"
6666
/>
6767
<LinkCard
6868
title="Selenium を利用する"
69-
href="/ja/develop/tests/webdriver/example/selenium/"
69+
href="/ja/develop/debug/tests/webdriver/example/selenium/"
7070
/>
7171
<LinkCard
7272
title="WebdriverIO を利用する"
73-
href="/ja/develop/tests/webdriver/example/webdriverio/"
73+
href="/ja/develop/debug/tests/webdriver/example/webdriverio/"
7474
/>
7575
</CardGrid>
7676

@@ -80,7 +80,7 @@ import { LinkCard, CardGrid } from '@astrojs/starlight/components';
8080

8181
<LinkCard
8282
title="継続的インテグレーション(CI)"
83-
href="/ja/develop/tests/webdriver/ci/"
83+
href="/ja/develop/debug/tests/webdriver/ci/"
8484
/>
8585

8686
<TranslationNote lang="ja">

src/content/docs/ja/develop/Debug/tests/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Deployment"(継続的統合/継続的展開)の略。ランナーは、CI/
2626
</TranslationNote>
2727

2828
[Mock Tauri APIs]: /ja/develop/tests/mocking/
29-
[WebDriver]: /ja/develop/tests/webdriver/
29+
[WebDriver]: /ja/develop/debug/tests/webdriver/
3030
[tauri-action]: https://github.com/tauri-apps/tauri-action
3131

3232
<div style="text-align: right">

src/content/docs/ja/develop/Debug/tests/mocking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ test('invoke', async () => {
183183
[`clearmocks()`]: /reference/javascript/api/namespacemocks/#clearmocks
184184
[Vitest]: https://vitest.dev
185185
[jest]: https://jestjs.io/ja/
186-
[サイドカー]: /ja/develop/sidecar.mdx
186+
[サイドカー]: /ja/develop/sidecar/
187187

188188
<div style="text-align: right">
189189
【※ この日本語版は、「Jan 22, 2025 英語版」に基づいています】

0 commit comments

Comments
 (0)