From ea5ce95ba5fca0d2dc9f6e7fa9d9ba43db5e3603 Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Sun, 13 Nov 2022 15:43:33 -0600 Subject: [PATCH] test: Add basic call for release_data I just want these for the typechecks --- test/functions.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/functions.ts b/test/functions.ts index ef77b64..677e304 100644 --- a/test/functions.ts +++ b/test/functions.ts @@ -22,7 +22,11 @@ test('lastest_stable_release_data', async t => { t.is(result.tag_name, 'v22.10.2') }) -test.todo('release_data') +test('release_data', async t => { + const result = await functions.release_data('v22.10.2', t.context.octokit) + t.is(result.tag_name, 'v22.10.2') +}) + test.todo('nextflow_bin_url') test.todo('install_nextflow')