it(`#${UniqueIdService.prototype.generateUniqueIdWithPrefix.name} should generate id when called with prefix`, () => {
const id = service.generateUniqueIdWithPrefix('app');
expect(id.startsWith('app-')).toBeTrue;
});
E o warning:
WARN: 'Spec 'UniqueIdService #generateUniqueIdWithPrefix should generate id when called with prefix' has no expectations.'
Alguém sabe o que pode ser isso?