Skip to content

Commit

Permalink
await meta
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorcampbell committed Aug 23, 2023
1 parent a91a82f commit 73ecedd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nbgrader/tests/ui-tests/assignment_list.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ test.afterEach(async ({ request, tmpPath }) => {
if (request === undefined) throw new Error("Request is undefined.");
const contents = galata.newContentsHelper(request);

var respdir = contents.getContentMetadata(tmpPath, 'directory')
var respfil = contents.getContentMetadata(tmpPath, 'file')
var respdir = await contents.getContentMetadata(tmpPath, 'directory')
var respfil = await contents.getContentMetadata(tmpPath, 'file')
console.log(`META OUTPUT`)
console.log(respdir)
console.log(respfil)
Expand Down

0 comments on commit 73ecedd

Please sign in to comment.