mirror of
https://gitlab.com/mobicoop/v3/service/configuration.git
synced 2026-02-01 21:00:44 +00:00
fix little typo in test
This commit is contained in:
@@ -93,12 +93,12 @@ describe('Configurations Manager Service', () => {
|
|||||||
expect(type).toBe(Type.INT);
|
expect(type).toBe(Type.INT);
|
||||||
});
|
});
|
||||||
it('should throw if configuration item is not found', () => {
|
it('should throw if configuration item is not found', () => {
|
||||||
const dentifier: Identifier = {
|
const identifier: Identifier = {
|
||||||
domain: Domain.MATCH,
|
domain: Domain.MATCH,
|
||||||
key: 'maxDetour',
|
key: 'maxDetour',
|
||||||
};
|
};
|
||||||
expect(() => {
|
expect(() => {
|
||||||
configurationsManagerService.identifierType(dentifier);
|
configurationsManagerService.identifierType(identifier);
|
||||||
}).toThrow(NotFoundException);
|
}).toThrow(NotFoundException);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user