mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 19:36:44 +03:00
29 lines
716 B
JavaScript
29 lines
716 B
JavaScript
'use strict';
|
|
|
|
import { BrowserDomAdapter } from '@angular/platform-browser/src/browser/browser_adapter';
|
|
|
|
import { RedocEventsService } from './events.service';
|
|
import { Hash } from './hash.service';
|
|
|
|
describe('Hash Service', () => {
|
|
let events = new RedocEventsService();
|
|
let hashService;
|
|
|
|
beforeEach(() => {
|
|
hashService = new Hash(new BrowserDomAdapter(), events);
|
|
});
|
|
|
|
afterEach(() => {
|
|
hashService.unbind();
|
|
});
|
|
|
|
it('should trigger changed event after ReDoc bootstrapped', (done) => {
|
|
spyOn(hashService.changed, 'next').and.callThrough();
|
|
events.bootstrapped.next();
|
|
setTimeout(() => {
|
|
expect(hashService.changed.next).toHaveBeenCalled();
|
|
done();
|
|
});
|
|
});
|
|
});
|