mirror of
https://github.com/kou029w/jest-hands-on.git
synced 2025-01-31 22:08:00 +00:00
hello.test.js externalization
This commit is contained in:
parent
1929d5a798
commit
f052e80a57
2 changed files with 6 additions and 7 deletions
|
@ -41,10 +41,7 @@ Pattern: - 0 matches
|
|||
次のファイルを作成します。
|
||||
|
||||
```js
|
||||
// hello.test.js
|
||||
test("1と2の合計は3です", () => {
|
||||
expect(1 + 2).toBe(3);
|
||||
});
|
||||
{{#include getting-started/hello.test.js}}
|
||||
```
|
||||
|
||||
この作成した `hello.test.js` は、`npx jest` コマンドを実行するときにテストとして実行されるようになります。
|
||||
|
@ -79,9 +76,7 @@ Ran all test suites.
|
|||
はじめてのテストのコード:
|
||||
|
||||
```js
|
||||
test("1と2の合計は3です", () => {
|
||||
expect(1 + 2).toBe(3);
|
||||
});
|
||||
{{#include getting-started/hello.test.js}}
|
||||
```
|
||||
|
||||
このコードは、「1と2の合計は3です」というテストを意味します。
|
||||
|
|
4
src/getting-started/hello.test.js
Normal file
4
src/getting-started/hello.test.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
// hello.test.js
|
||||
test("1と2の合計は3です", () => {
|
||||
expect(1 + 2).toBe(3);
|
||||
});
|
Loading…
Add table
Reference in a new issue