mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-19 14:42:58 +05:30
39 lines
948 B
JavaScript
39 lines
948 B
JavaScript
/**
|
|
* A helpers for testing states in isolation from AuthFlow
|
|
*/
|
|
|
|
export function bootstrap() {
|
|
const context = {
|
|
getState: sinon.stub(),
|
|
run() {},
|
|
setState() {},
|
|
getRequest: sinon.stub(),
|
|
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, options) {
|
|
if (options) {
|
|
return mock.expects('navigate').once().withExactArgs(route, sinon.match(options));
|
|
} else {
|
|
return mock.expects('navigate').once().withExactArgs(route);
|
|
}
|
|
}
|
|
|
|
export function expectRun(mock, ...args) {
|
|
return mock.expects('run').once().withExactArgs(...args);
|
|
}
|