Globals
テストファイルでは、Jest はそれぞれのメソッドとオブジェクトをグローバル環境に配置します。 それらを使用するために require または import する必要はありません。 ただし、明示的にインポートしたい場合は、 '@jest/globals' から {describe, expect, test} をインポートすることができます
。
メソッド
afterAll(fn, timeout)
afterEach(fn, timeout)
beforeAll(fn, timeout)
beforeEach(fn, timeout)
describe(name, fn)
describe.each(table)(name, fn, timeout)
describe.only(name, fn)
describe.only.each(table)(name, fn)
describe.skip(name, fn)
describe.skip.each(table)(name, fn)
test(name, fn, timeout)
test.concurrent(name, fn, timeout)
test.concurrent.each(table)(name, fn, timeout)
test.concurrent.only.each(table)(name, fn)
test.concurrent.skip.each(table)(name, fn)
test.each(table)(name, fn, timeout)
test.only(name, fn, timeout)
test.only.each(table)(name, fn)
test.skip(name, fn)
test.skip.each(table)(name, fn)
test.todo(name)
リファレンス
afterAll(fn, timeout)
このファイル内のすべてのテストが完了した後に、関数を実行します。 関数がpromiseを返す、またはジェネレータ関数である場合、Jestはそのpromiseが解決されるのを待ちます。
オプションとして、timeout
(ミリ秒) を指定して、中断前にどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
テスト間で共有するグローバルな設定や状態をクリーンアップしたい場合に便利です。
例:
const globalDatabase = makeGlobalDatabase();
function cleanUpDatabase(db) {
db.cleanUp();
}
afterAll(() => {
cleanUpDatabase(globalDatabase);
});
test('can find things', () => {
return globalDatabase.find('thing', {}, results => {
expect(results.length).toBeGreaterThan(0);
});
});
test('can insert a thing', () => {
return globalDatabase.insert('thing', makeThing(), response => {
expect(response.success).toBeTruthy();
});
});
この例では afterAll
関数はファイル内の全てのテストが完了した後にcleanUpDatabase
を必ず実行します。
afterAll
関数 が describe
ブロック内に記述された場合は、 そのブロックの最後にafterAll
関数が実行されます。
全テスト完了後ではなく、個々のテストの完了後にクリーンアップ処理を行いたい場合は、 afterEach
関数を使用して下さい。
afterEach(fn, timeout)
このファイル内の各テストが完了するたびに、関数を実行します。 関数がpromiseを返すか、またはジェネレータ関数である場合、Jestはpromiseが解決されるのを待ちます。
オプションとして、timeout
(ミリ秒) を指定して、中断前にどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
各テストで一時的に設定した状態などをクリーンアップしたい場合に便利です。
例:
const globalDatabase = makeGlobalDatabase();
function cleanUpDatabase(db) {
db.cleanUp();
}
afterEach(() => {
cleanUpDatabase(globalDatabase);
});
test('can find things', () => {
return globalDatabase.find('thing', {}, results => {
expect(results.length).toBeGreaterThan(0);
});
});
test('can insert a thing', () => {
return globalDatabase.insert('thing', makeThing(), response => {
expect(response.success).toBeTruthy();
});
});
この例では afterEach
関数はファイル内の各テストが完了するごとに cleanUpDatabase
を必ず実行します。
afterEach
関数が describe
ブロック内に記述された場合は、 afterEach
関数が記述されたブロックのみ、最後に実行されます。
全テストが完了した後に一度だけ何らかのクリーンアップを実行する場合は、 afterAll
関数を使用して下さい。
beforeAll(fn, timeout)
このファイルのテストを実行する前に、関数を実行します。 関数がpromiseを返すか、ジェネレータ関数である場合、Jestはテストを実行する前にpromiseが解決されるのを待ちます。
オプションとして、timeout
(ミリ秒) を指定して、中断前にどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
多数のテストで使用するグローバルな状態を設定したい場合に便利です。
例:
const globalDatabase = makeGlobalDatabase();
beforeAll(() => {
// Clears the database and adds some testing data.
// Jest will wait for this promise to resolve before running tests.
return globalDatabase.clear().then(() => {
return globalDatabase.insert({testData: 'foo'});
});
});
// Since we only set up the database once in this example, it's important
// that our tests don't modify it.
test('can find things', () => {
return globalDatabase.find('thing', {}, results => {
expect(results.length).toBeGreaterThan(0);
});
});
この例ではbeforeAll
はテスト開始前に必ずデータベースのセットアップを行います。 セットアップが同期処理の場合は、 beforeAll
を使用する必要はありません。 この関数の要点はJestがPromiseの状態が決まるまで待つことであり、非同期処理によるセットアップが行えるということであるとも言えます。
beforeAll
関数 が describe
ブロック内に記述された場合は、 そのブロックの最初に beforeAll
関数が実行されます。
全テスト開始前ではなく、個々のテストの開始前に何らかの処理を行いたい場合は、 beforeEach
関数を使用して下さい。
beforeEach(fn, timeout)
このファイルの各テストが実行される前に、関数を実行します。 関数がpromiseを返す、またはジェネレータ関数の場合、Jestはテストを実行する前にpromiseが解決されるのを待ちます。
オプションとして、timeout
(ミリ秒) を指定して、中断前にどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
多数のテストで使用するグローバルな状態を設定したい場合に便利です。
例:
const globalDatabase = makeGlobalDatabase();
beforeEach(() => {
// Clears the database and adds some testing data.
// Jest will wait for this promise to resolve before running tests.
return globalDatabase.clear().then(() => {
return globalDatabase.insert({testData: 'foo'});
});
});
test('can find things', () => {
return globalDatabase.find('thing', {}, results => {
expect(results.length).toBeGreaterThan(0);
});
});
test('can insert a thing', () => {
return globalDatabase.insert('thing', makeThing(), response => {
expect(response.success).toBeTruthy();
});
});
この例ではbeforeEach
関数は個々のテストを開始する前に必ずデータベースのリセットを行います。
beforeEach
関数 が describe
ブロック内に記述された場合は、 各ブロックの最初に beforeEach
関数が実行されます。
何らかのセットアップ コードを 一度だけ実行したい場合は、 beforeAll
関数を使用してください。
describe(name, fn)
describe(name, fn)
は、いくつかの関連するテストをまとめたブロックを作成します。 例えば、美味しくて酸っぱくないとされるmyBeverage
オブジェクトがある場合、このようなテストコードを作成できます:
const myBeverage = {
delicious: true,
sour: false,
};
describe('my beverage', () => {
test('is delicious', () => {
expect(myBeverage.delicious).toBeTruthy();
});
test('is not sour', () => {
expect(myBeverage.sour).toBeFalsy();
});
});
これは必須ではありません - テスト
ブロックをトップレベルに直接書き込むことができます。しかしテストをグループにまとめたい場合には便利です。
テストに階層構造を持たせたい場合でも describe
をネストすることができます。
const binaryStringToNumber = binString =>; {
if (!/^[01]+$/.test(binString)) {
throw new CustomError('Not a binary number.');
}
return parseInt(binString, 2);
};
describe('binaryStringToNumber', () =>; {
describe('given an invalid binary string', () =>; {
test('composed of non-numbers throws CustomError', () =>; {
expect(() =>; binaryStringToNumber('abc')).toThrowError(CustomError);
});
test('with extra whitespace throws CustomError', () =>; {
expect(() =>; binaryStringToNumber(' 100')).toThrowError(CustomError);
});
});
describe.each(table)(name, fn, timeout)
異なるテストデータで同じ内容のテストを行う場合は、describe.each
を使用します。describe.each
によりテストスイートを1回だけ記述し、データを渡すことができます。
describe.each
は 2 つの API で利用できます:
describe.each(table)(name, fn, timeout)
1. table
:各列ごとにfnに引数として渡される配列の配列です。
- 注意: 1次元の配列を渡した場合には、内部的には
[1, 2, 3] -> [[1], [2], [3]]
のようにテーブルにマッピングされます
- 注意: 1次元の配列を渡した場合には、内部的には
name
:テストスイートのタイトルとなる文字列
printf
の書式に従うパラメータを注入することで、ユニークなテストタイトルを生成します。 :%p
- pretty-format.%s
- String.%d
- Number.%i
- Integer.%f
- Floating point value.%j
- JSON.%o
- Object.%#
- テストケースのインデックス。%%
- single percent sign ('%'). This does not consume an argument.
fn
:実行されるテストの一連の関数
。各行のパラメータを引数として受け取る関数です。- オプションとして、
timeout
(ミリ秒) を指定して、中断前に各行でどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
例:
describe.each([
[1, 1, 2],
[1, 2, 3],
[2, 1, 3],
])('.add(%i, %i)', (a, b, expected) => {
test(`returns ${expected}`, () => {
expect(a + b).toBe(expected);
});
test(`returned value not be greater than ${expected}`, () => {
expect(a + b).not.toBeGreaterThan(expected);
});
test(`returned value not be less than ${expected}`, () => {
expect(a + b).not.toBeLessThan(expected);
});
});
describe.each`table`(name, fn, timeout)
2. table
:タグによるテンプレートリテラル
|
で区切られた変数名を表す1番目の行${value}
構文によるテンプレートリテラル式として提供される1行以上の後続のデータ。
name
:テストスイートのタイトルで、 タグによるテンプレート式からスイートのタイトルにテストデータを挿入するには
$variable
を使用してください。- ネストされたオブジェクトの値を注入するには、keyPath 、すなわち
$variable.path.to.value
の形式で指定できます。
- ネストされたオブジェクトの値を注入するには、keyPath 、すなわち
fn
:実行される一連のテスト関数
で、テストデータのオブジェクトを受け取ります。- オプションとして、
timeout
(ミリ秒) を指定して、中断前に各行でどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
例:
describe.each`
a | b | expected
${1} | ${1} | ${2}
${1} | ${2} | ${3}
${2} | ${1} | ${3}
`('$a + $b', ({a, b, expected}) => {
test(`returns ${expected}`, () => {
expect(a + b).toBe(expected);
});
test(`returned value not be greater than ${expected}`, () => {
expect(a + b).not.toBeGreaterThan(expected);
});
test(`returned value not be less than ${expected}`, () => {
expect(a + b).not.toBeLessThan(expected);
});
});
describe.only(name, fn)
次の別名でも同様となります: fdescribe(name, fn)
1つのdescribeブロックだけを実行したい場合には describe.only
を使用して下さい:
describe.only('my beverage', () => {
test('is delicious', () => {
expect(myBeverage.delicious).toBeTruthy();
});
test('is not sour', () => {
expect(myBeverage.sour).toBeFalsy();
});
});
describe('my other beverage', () => {
// ... will be skipped
});
describe.only.each(table)(name, fn)
次のエイリアスでも使用可能です: fdescribe.each(table)(name, fn)
と fdescribe.each`table`(name, fn)
データ駆動型テストで特定のテストスイートのみを実行する場合は、 describe.only.each
を使用してください。
describe.only.each
は 2 つの API で利用できます:
describe.only.each(table)(name, fn)
describe.only.each([
[1, 1, 2],
[1, 2, 3],
[2, 1, 3],
])('.add(%i, %i)', (a, b, expected) => {
test(`returns ${expected}`, () => {
expect(a + b).toBe(expected);
});
});
test('will not be ran', () => {
expect(1 / 0).toBe(Infinity);
});
describe.only.each`table`(name, fn)
describe.only.each`
a | b | expected
${1} | ${1} | ${2}
${1} | ${2} | ${3}
${2} | ${1} | ${3}
`('returns $expected when $a is added $b', ({a, b, expected}) => {
test('passes', () => {
expect(a + b).toBe(expected);
});
});
test('will not be ran', () => {
expect(1 / 0).toBe(Infinity);
});
describe.skip(name, fn)
次の別名でも同様となります: xdescribe(name, fn)
特定ののdescribeブロックを実行したくない場合には describe.skip
を使用して下さい:
describe('my beverage', () => {
test('is delicious', () => {
expect(myBeverage.delicious).toBeTruthy();
});
test('is not sour', () => {
expect(myBeverage.sour).toBeFalsy();
});
});
describe.skip('my other beverage', () => {
// ... will be skipped
});
describe.skip
はしばしば、テストの一部を一時的にコメントアウトする代わりになります。
describe.skip.each(table)(name, fn)
次のエイリアスでも使用可能です: xdescribe.each(table)(name, fn)
と xdescribe.each`table`(name, fn)
一連のデータ駆動テストを停止するには、 describe.skip.each
を使用してください。
describe.skip.each
は 2 つの API で利用できます:
describe.skip.each(table)(name, fn)
describe.skip.each([
[1, 1, 2],
[1, 2, 3],
[2, 1, 3],
])('.add(%i, %i)', (a, b, expected) => {
test(`returns ${expected}`, () => {
expect(a + b).toBe(expected); // will not be ran
});
});
test('will be ran', () => {
expect(1 / 0).toBe(Infinity);
});
describe.skip.each`table`(name, fn)
describe.skip.each`
a | b | expected
${1} | ${1} | ${2}
${1} | ${2} | ${3}
${2} | ${1} | ${3}
`('returns $expected when $a is added $b', ({a, b, expected}) => {
test('will not be ran', () => {
expect(a + b).toBe(expected); // will not be ran
});
});
test('will be ran', () => {
expect(1 / 0).toBe(Infinity);
});
test(name, fn, timeout)
次の別名でも同様となります: it(name, fn, timeout)
テストの実行に絶対に必要となるのは test
メソッドだけです。例えば、ゼロを返べき inchesOfRain()
関数があったとしましょう。テスト全体は次のようになります:
test('did not rain', () => {
expect(inchesOfRain()).toBe(0);
});
第1引数にテスト名を、第2引数にテストの確認項目を含む関数を設定します。 3番目の引数 (任意) は タイムアウト値
(ミリ秒単位) で、中止するまでの待ち時間を指定します。 注意: デフォルトのタイムアウトは5秒です。
注意:
test
からPromiseが返された場合、Jestはテストが完了する前にPromiseの状態が決まるまで待ちます。 Jest は、通常はdone
と呼ばれるテスト関数に引数を与えた場合にも待ちます。 この動作はコールバックをテストしたい場合に便利です。 非同期なコードをテストする方法をこちらを参照してください。
例えば、 lemon
を含むリストを取得することを期待されるPromise関数を返すfetchBeverageList()
関数があったとします。次のようにテストできます:
test('has lemon in it', () => {
return fetchBeverageList().then(list => {
expect(list).toContain('lemon');
});
});
たとえtest
ブロックが直ちに値を返したとしても、テストはPromiseの状態が決まるまでは終了しません。
test.concurrent(name, fn, timeout)
Also under the alias: it.concurrent(name, fn, timeout)
Use test.concurrent
if you want the test to run concurrently.
Note:
test.concurrent
is considered experimental - see here for details on missing features and other issues
The first argument is the test name; the second argument is an asynchronous function that contains the expectations to test. 3番目の引数 (任意) は タイムアウト値
(ミリ秒単位) で、中止するまでの待ち時間を指定します。 注意: デフォルトのタイムアウトは5秒です。
test.concurrent('addition of 2 numbers', async () => {
expect(5 + 3).toBe(8);
});
test.concurrent('subtraction 2 numbers', async () => {
expect(5 - 3).toBe(2);
});
Note: Use
maxConcurrency
in configuration to prevents Jest from executing more than the specified amount of tests at the same time
test.concurrent.each(table)(name, fn, timeout)
Also under the alias: it.concurrent.each(table)(name, fn, timeout)
Use test.concurrent.each
if you keep duplicating the same test with different data. test.each
allows you to write the test once and pass data in, the tests are all run asynchronously.
test.concurrent.each
は 2 つの API で利用できます:
test.concurrent.each(table)(name, fn, timeout)
1. table
:テストに渡される配列の配列です。
- 注意: 1次元の配列を渡した場合には、内部的には
[1, 2, 3] -> [[1], [2], [3]]
のようにテーブルにマッピングされます
- 注意: 1次元の配列を渡した場合には、内部的には
name
:テストブロックのタイトルとなります。
printf
の書式に従うパラメータを注入することで、ユニークなテストタイトルを生成します。 :%p
- pretty-format.%s
- String.%d
- Number.%i
- Integer.%f
- Floating point value.%j
- JSON.%o
- Object.%#
- テストケースのインデックス。%%
- single percent sign ('%'). This does not consume an argument.
fn
:Function
the test to be ran, this is the function that will receive the parameters in each row as function arguments, this will have to be an asynchronous function.- オプションとして、
timeout
(ミリ秒) を指定して、中断前に各行でどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
例:
test.concurrent.each([
[1, 1, 2],
[1, 2, 3],
[2, 1, 3],
])('.add(%i, %i)', (a, b, expected) => {
expect(a + b).toBe(expected);
});
test.concurrent.each`table`(name, fn, timeout)
2. table
:タグによるテンプレートリテラル
|
で区切られた変数名を表す1番目の行${value}
構文によるテンプレートリテラル式として提供される1行以上の後続のデータ。
name
:テストスイートのタイトルで、 タグによるテンプレート式からスイートのタイトルにテストデータを挿入するには
$variable
を使用してください。- ネストされたオブジェクトの値を注入するには、keyPath 、すなわち
$variable.path.to.value
の形式で指定できます。
- ネストされたオブジェクトの値を注入するには、keyPath 、すなわち
fn
:Function
the test to be ran, this is the function that will receive the test data object, this will have to be an asynchronous function.- オプションとして、
timeout
(ミリ秒) を指定して、中断前に各行でどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
例:
test.concurrent.each`
a | b | expected
${1} | ${1} | ${2}
${1} | ${2} | ${3}
${2} | ${1} | ${3}
`('returns $expected when $a is added $b', ({a, b, expected}) => {
expect(a + b).toBe(expected);
});
test.concurrent.only.each(table)(name, fn)
Also under the alias: it.concurrent.only.each(table)(name, fn)
Use test.concurrent.only.each
if you want to only run specific tests with different test data concurrently.
test.concurrent.only.each
は 2 つの API で利用できます:
test.concurrent.only.each(table)(name, fn)
test.concurrent.only.each([
[1, 1, 2],
[1, 2, 3],
[2, 1, 3],
])('.add(%i, %i)', async (a, b, expected) => {
expect(a + b).toBe(expected);
});
test('will not be ran', () => {
expect(1 / 0).toBe(Infinity);
});
test.only.each`table`(name, fn)
test.concurrent.only.each`
a | b | expected
${1} | ${1} | ${2}
${1} | ${2} | ${3}
${2} | ${1} | ${3}
`('returns $expected when $a is added $b', async ({a, b, expected}) => {
expect(a + b).toBe(expected);
});
test('will not be ran', () => {
expect(1 / 0).toBe(Infinity);
});
test.concurrent.skip.each(table)(name, fn)
Also under the alias: it.concurrent.skip.each(table)(name, fn)
Use test.concurrent.skip.each
if you want to stop running a collection of asynchronous data driven tests.
test.concurrent.skip.each
は 2 つの API で利用できます:
test.concurrent.skip.each(table)(name, fn)
test.concurrent.skip.each([
[1, 1, 2],
[1, 2, 3],
[2, 1, 3],
])('.add(%i, %i)', async (a, b, expected) => {
expect(a + b).toBe(expected); // will not be ran
});
test('will be ran', () => {
expect(1 / 0).toBe(Infinity);
});
test.concurrent.skip.each`table`(name, fn)
test.concurrent.skip.each`
a | b | expected
${1} | ${1} | ${2}
${1} | ${2} | ${3}
${2} | ${1} | ${3}
`('returns $expected when $a is added $b', async ({a, b, expected}) => {
expect(a + b).toBe(expected); // will not be ran
});
test('will be ran', () => {
expect(1 / 0).toBe(Infinity);
});
test.each(table)(name, fn, timeout)
次のエイリアスでも使用可能です: it.each(table)(name, fn)
と it.each`table`(name, fn)
異なるテストデータで同じ内容のテストスイートを行う場合は、test.each
を使用します。test.each
によりテストスイートを1回だけ記述し、データを渡すことができます。
test.each
は 2 つの API で利用できます:
test.each(table)(name, fn, timeout)
1. table
:テストに渡される配列の配列です。
- 注意: 1次元の配列を渡した場合には、内部的には
[1, 2, 3] -> [[1], [2], [3]]
のようにテーブルにマッピングされます
- 注意: 1次元の配列を渡した場合には、内部的には
name
:テストブロックのタイトルとなります。
printf
の書式に従うパラメータを注入することで、ユニークなテストタイトルを生成します。 :%p
- pretty-format.%s
- String.%d
- Number.%i
- Integer.%f
- Floating point value.%j
- JSON.%o
- Object.%#
- テストケースのインデックス。%%
- single percent sign ('%'). This does not consume an argument.
fn
:テストを実行する関数
で、各行のパラメータを関数の引数として受け取ります。- オプションとして、
timeout
(ミリ秒) を指定して、中断前に各行でどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
例:
test.each([
[1, 1, 2],
[1, 2, 3],
[2, 1, 3],
])('.add(%i, %i)', (a, b, expected) => {
expect(a + b).toBe(expected);
});
test.each`table`(name, fn, timeout)
2. table
:タグによるテンプレートリテラル
|
で区切られた変数名を表す1番目の行${value}
構文によるテンプレートリテラル式として提供される1行以上の後続のデータ。
name
:テストスイートのタイトルで、 タグによるテンプレート式からスイートのタイトルにテストデータを挿入するには
$variable
を使用してください。- ネストされたオブジェクトの値を注入するには、keyPath 、すなわち
$variable.path.to.value
の形式で指定できます。
- ネストされたオブジェクトの値を注入するには、keyPath 、すなわち
fn
:テストを実行する関数
で、 テストデータのオブジェクトを受け取ります。- オプションとして、
timeout
(ミリ秒) を指定して、中断前に各行でどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
例:
test.each`
a | b | expected
${1} | ${1} | ${2}
${1} | ${2} | ${3}
${2} | ${1} | ${3}
`('returns $expected when $a is added $b', ({a, b, expected}) => {
expect(a + b).toBe(expected);
});
test.only(name, fn, timeout)
次の別名でも同様です: it.only(name, fn, timeout)
と fit(name, fn, timeout)
大きなテストファイルをデバッグする時、テストの一部だけを実行したいことがあるでしょう。.only
を使用すると、テストファイルの中で実行したいテストだけを行うことができます。
オプションとして、timeout
(ミリ秒) を指定して、中断前にどのくらい待機するかを指定することができます。注意: デフォルトのタイムアウトは5秒です。
例えば、次のようなテストがあったとしましょう:
test.only('it is raining', () => {
expect(inchesOfRain()).toBeGreaterThan(0);
});
test('it is not snowing', () => {
expect(inchesOfSnow()).toBe(0);
});
test.only
で実行されるので、"It is raining" テストのみがそのテストファイルで実行されます。
通常はテストの動作を管理する手段としてtest.only
を用いることはないでしょう - デバッグ作業のために使用し、壊れているテストを修復すれば削除することでしょう。
test.only.each(table)(name, fn)
Also under the aliases: it.only.each(table)(name, fn)
, fit.each(table)(name, fn)
, it.only.each`table`(name, fn)
and fit.each`table`(name, fn)
異なるテストデータを使用して特定のテストのみを実行する場合は、 test.only.each
を使用してください。
test.only.each
は 2 つの API で利用できます:
test.only.each(table)(name, fn)
test.only.each([
[1, 1, 2],
[1, 2, 3],
[2, 1, 3],
])('.add(%i, %i)', (a, b, expected) => {
expect(a + b).toBe(expected);
});
test('will not be ran', () => {
expect(1 / 0).toBe(Infinity);
});
test.only.each`table`(name, fn)
test.only.each`
a | b | expected
${1} | ${1} | ${2}
${1} | ${2} | ${3}
${2} | ${1} | ${3}
`('returns $expected when $a is added $b', ({a, b, expected}) => {
expect(a + b).toBe(expected);
});
test('will not be ran', () => {
expect(1 / 0).toBe(Infinity);
});
test.skip(name, fn)
次の別名でも同様です: it.skip(name, fn)
または xit(name, fn)
または xtest(name, fn)
大きなコードベースを保守するとき、何らかの理由で一時的に壊れているテストを見つけることがあるでしょう。 テストコードを削除せずにスキップしたい場合、test.skip
を使って特定のテストをスキップできます。
例えば、次のようなテストがあったとしましょう:
test('it is raining', () => {
expect(inchesOfRain()).toBeGreaterThan(0);
});
test.skip('it is not snowing', () => {
expect(inchesOfSnow()).toBe(0);
});
他のテストにはtest.skip
があるので、"it is raining"のテストだけが実行されます。
単純ににテストをコメントアウトすることもできますが、テストが存在することとシンタックスハイライトを維持できるため、 test.skip
を利用したほうが良いことがしばしばあります。
test.skip.each(table)(name, fn)
次のエイリアスでも使用可能です:it.skip.each(table)(name, fn)
, xit.each(table)(name, fn)
, xtest.each(table)(name, fn)
, it.skip.each`table`(name, fn)
, xit.each`table`(name, fn)
と xtest.each`table`(name, fn)
一連のデータ駆動型テストを停止したい場合は、 test.skip.each
を使用してください。
test.skip.each
は 2 つの API で利用できます:
test.skip.each(table)(name, fn)
test.skip.each([
[1, 1, 2],
[1, 2, 3],
[2, 1, 3],
])('.add(%i, %i)', (a, b, expected) => {
expect(a + b).toBe(expected); // will not be ran
});
test('will be ran', () => {
expect(1 / 0).toBe(Infinity);
});
test.skip.each`table`(name, fn)
test.skip.each`
a | b | expected
${1} | ${1} | ${2}
${1} | ${2} | ${3}
${2} | ${1} | ${3}
`('returns $expected when $a is added $b', ({a, b, expected}) => {
expect(a + b).toBe(expected); // will not be ran
});
test('will be ran', () => {
expect(1 / 0).toBe(Infinity);
});
test.todo(name)
次の別名でも使用可能です: it.todo(name)
テスト作成を計画している場合は、 test.todo
を使用してください。 これらのテストは最後にサマリ出力でハイライトされるため、必要なテストの数がわかります。
Note: If you supply a test callback function then the test.todo
will throw an error. If you have already implemented the test and it is broken and you do not want it to run, then use test.skip
instead.
API
name
: テスト計画のタイトルの文字列
。
例:
const add = (a, b) => a + b;
test.todo('add should be associative');