.then
依存関係の 1 つのと.catch
ブロックで実行したいテストがいくつかあります。
import test from 'ava';
import sinon from 'sinon';
// Fake dependency code - this would be imported
const myDependency = {
someMethod: () => {}
};
// Fake production code - this would be imported
function someCode() {
return myDependency.someMethod()
.then((response) => {
return response;
})
.catch((error) => {
throw error;
});
}
// Test code
let sandbox;
test.beforeEach(() => {
sandbox = sinon.sandbox.create();
});
test.afterEach.always(() => {
sandbox.restore();
});
test('First async test', async (t) => {
const fakeResponse = {};
sandbox.stub(myDependency, 'someMethod')
.returns(Promise.resolve(fakeResponse));
const response = await someCode();
t.is(response, fakeResponse);
});
test('Second async test', async (t) => {
const fakeError = 'my fake error';
sandbox.stub(myDependency, 'someMethod')
.returns(Promise.reject(fakeError));
const returnedError = await t.throws(someCode());
t.is(returnedError, fakeError);
});
いずれかのテストを単独で実行すると、テストに合格します。しかし、これらを一緒に実行すると、テスト A のセットアップが実行され、それが完了する前にテスト B のセットアップが実行され、次のエラーが発生します。
Second async test
failed with "Attempted to wrap someMethod which is already wrapped"
たぶん、テストの設定方法を理解していないのでしょう。テスト B の実行が開始される前に、テスト A を強制的に完了する方法はありますか?