Skip to content

Commit

Permalink
asef
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorcampbell committed Aug 23, 2023
1 parent 906f7aa commit a91a82f
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions nbgrader/tests/ui-tests/assignment_list.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,7 @@ test.beforeEach(async ({ request, tmpPath }) => {
console.log(`BEFORE EACH START`);

console.log(getFiles(testDir))
console.log(`REQUEST`)
console.log(request)

console.log(`tmpPath`)
console.log(tmpPath)



const contents = galata.newContentsHelper(request);

await contents.createDirectory(tmpPath);
Expand Down Expand Up @@ -144,6 +138,13 @@ 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')
console.log(`META OUTPUT`)
console.log(respdir)
console.log(respfil)

await contents.deleteDirectory(tmpPath);

console.log(`AFTER DELETE TMPPATH`)
Expand Down

0 comments on commit a91a82f

Please sign in to comment.