test: Add basic call for release_data

I just want these for the typechecks
This commit is contained in:
Edmund Miller 2022-11-13 15:43:33 -06:00 committed by Thomas A. Christensen II
parent ed6b338f42
commit ea5ce95ba5

View file

@ -22,7 +22,11 @@ test('lastest_stable_release_data', async t => {
t.is(result.tag_name, 'v22.10.2') 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('nextflow_bin_url')
test.todo('install_nextflow') test.todo('install_nextflow')