Skip to content

Commit

Permalink
Fixed another race condition
Browse files Browse the repository at this point in the history
  • Loading branch information
robmoffat committed Sep 26, 2024
1 parent fb2967a commit e5638d7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/v2.0/advanced/fdc3.getAppMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { assert, expect } from "chai";
import { APIDocumentation2_0 } from "../apiDocuments-2.0";
import { MetadataFdc3Api, MetadataValidator } from "../support/metadata-support-2.0";
import { closeMockAppWindow } from "../fdc3-2_0-utils";
import { wait } from "../../../utils";

const getMetadataDocs = "\r\nDocumentation: " + APIDocumentation2_0.appMetadata + "\r\nCause: ";
const validator = new MetadataValidator();
Expand All @@ -10,6 +11,7 @@ const api = new MetadataFdc3Api();
export default () =>
describe("fdc3.getAppMetadata", () => {
after(async () => {
await wait(600)
await closeMockAppWindow(appInstanceMetadata);
});

Expand Down

0 comments on commit e5638d7

Please sign in to comment.