File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -536,16 +536,16 @@ Example:
536536test .use ({ tmpPath: ' test-toc' });
537537
538538test .describe .serial (' Table of Contents' , () => {
539- test .beforeAll (async ({ baseURL , tmpPath }) => {
540- const contents = galata .newContentsHelper (baseURL );
539+ test .beforeAll (async ({ request , tmpPath }) => {
540+ const contents = galata .newContentsHelper (request );
541541 await contents .uploadFile (
542542 path .resolve (__dirname , ` ./notebooks/${fileName } ` ),
543543 ` ${tmpPath }/${fileName } `
544544 );
545545 });
546546
547- test .afterAll (async ({ baseURL , tmpPath }) => {
548- const contents = galata .newContentsHelper (baseURL );
547+ test .afterAll (async ({ request , tmpPath }) => {
548+ const contents = galata .newContentsHelper (request );
549549 await contents .deleteDirectory (tmpPath );
550550 });
551551});
You can’t perform that action at this time.
0 commit comments