From 6ed011946663157c1c91136b99e100facc4cbee5 Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Tue, 16 Jul 2024 15:54:39 +0300 Subject: [PATCH] Downloading the download dataset --- test/consumeFlow.test.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/consumeFlow.test.ts b/test/consumeFlow.test.ts index 64004ad..0fe143d 100644 --- a/test/consumeFlow.test.ts +++ b/test/consumeFlow.test.ts @@ -149,4 +149,10 @@ describe("Ocean CLI Publishing", function() { }); }); + it("should download the download dataset", function(done) { + exec(`npm run cli download ${downloadDatasetDid} ./`, { cwd: projectRoot }, (error, stdout) => { + console.log('stdout', stdout) + done() + }); + }); });