Тесты для стейтов AuthFlow

This commit is contained in:
SleepWalker
2016-03-21 08:16:37 +02:00
parent 1e9b48bd9b
commit 21bbba399f
17 changed files with 985 additions and 17 deletions

View File

@@ -0,0 +1,29 @@
export function bootstrap() {
const context = {
getState: sinon.stub(),
run() {},
setState() {},
navigate() {}
};
const mock = sinon.mock(context);
mock.expects('run').never();
mock.expects('navigate').never();
mock.expects('setState').never();
return {context, mock};
}
export function expectState(mock, state) {
return mock.expects('setState').once().withExactArgs(
sinon.match.instanceOf(state)
);
}
export function expectNavigate(mock, route) {
return mock.expects('navigate').once().withExactArgs(route);
}
export function expectRun(mock, ...args) {
return mock.expects('run').once().withExactArgs(...args);
}