Cosmetics

This commit is contained in:
Eric van der Vlist 2023-06-13 10:52:52 +02:00
parent 0ae8b68255
commit 787323bcac
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ describe('The getTagStatus function', () => {
highlighted: false,
});
});
it('should return definition/true for a tag that exists and is highlighted', () => {
it('should return highlighted: true for a tag that exists and is highlighted', () => {
expect(
getTagStatus(
'whatever',
@ -21,7 +21,7 @@ describe('The getTagStatus function', () => {
highlighted: true,
});
});
it('should return definition/false for a tag that exists and is NOT highlighted', () => {
it('should return highlighted: false for a tag that exists and is NOT highlighted', () => {
expect(
getTagStatus(
'whatever',

View File

@ -10,8 +10,8 @@ enum TagType {
}
interface TagActivityDefinitions {
poi?: { [key: string]: TagCategoryDefinitions };
route?: { [key: string]: TagCategoryDefinitions };
poi?: { [key: string]: TagCategoryDefinitions };
}
interface TagDefinitions {