Cosmetics
This commit is contained in:
parent
0ae8b68255
commit
787323bcac
|
@ -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',
|
||||
|
|
|
@ -10,8 +10,8 @@ enum TagType {
|
|||
}
|
||||
|
||||
interface TagActivityDefinitions {
|
||||
poi?: { [key: string]: TagCategoryDefinitions };
|
||||
route?: { [key: string]: TagCategoryDefinitions };
|
||||
poi?: { [key: string]: TagCategoryDefinitions };
|
||||
}
|
||||
|
||||
interface TagDefinitions {
|
||||
|
|
Loading…
Reference in New Issue