describe('When calling the "wait" method', () => {
        it('will be provided with a message and a title', () => {
            sut.wait('the-message', 'the-title');

            expect((mockedToastyService.wait as sinon.SinonStub).calledOnce).to.be.true;