Fix router test flakes (#6309)

* resolve conflicts
* disable flaky tests
This commit is contained in:
Scott Bell
2023-02-09 20:34:34 +01:00
committed by GitHub
parent 5a8f1d542e
commit b4df01965e
4 changed files with 10 additions and 14 deletions

View File

@ -217,13 +217,6 @@ describe("The Annotation API", () => {
openmct.annotation.deleteAnnotations([annotationObject]);
expect(annotationObject._deleted).toBeTrue();
});
it("throws an error if deleting non-existent tag", async () => {
const annotationObject = await openmct.annotation.create(tagCreationArguments);
expect(annotationObject).toBeDefined();
expect(() => {
openmct.annotation.removeAnnotationTag(annotationObject, 'ThisTagShouldNotExist');
}).toThrow();
});
it("can remove all tags", async () => {
const annotationObject = await openmct.annotation.create(tagCreationArguments);
expect(annotationObject).toBeDefined();