Cosmetics
This commit is contained in:
parent
0ae8b68255
commit
787323bcac
|
@ -7,7 +7,7 @@ describe('The getTagStatus function', () => {
|
||||||
highlighted: false,
|
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(
|
expect(
|
||||||
getTagStatus(
|
getTagStatus(
|
||||||
'whatever',
|
'whatever',
|
||||||
|
@ -21,7 +21,7 @@ describe('The getTagStatus function', () => {
|
||||||
highlighted: true,
|
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(
|
expect(
|
||||||
getTagStatus(
|
getTagStatus(
|
||||||
'whatever',
|
'whatever',
|
||||||
|
|
|
@ -10,8 +10,8 @@ enum TagType {
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TagActivityDefinitions {
|
interface TagActivityDefinitions {
|
||||||
poi?: { [key: string]: TagCategoryDefinitions };
|
|
||||||
route?: { [key: string]: TagCategoryDefinitions };
|
route?: { [key: string]: TagCategoryDefinitions };
|
||||||
|
poi?: { [key: string]: TagCategoryDefinitions };
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TagDefinitions {
|
interface TagDefinitions {
|
||||||
|
|
Loading…
Reference in New Issue