Fix release version check in unit test (#15).

This commit is contained in:
Robrecht Cannoodt 2023-06-28 09:58:04 +02:00
parent c6daa302be
commit 07f474dd40
2 changed files with 3 additions and 1 deletions

View file

@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Re-enable npm run test in CI (#15). - Re-enable npm run test in CI (#15).
- Fix release version check in unit test (#15).
## [1.3.0] - 2023-05-19 ## [1.3.0] - 2023-05-19
## Changed ## Changed

View file

@ -29,7 +29,7 @@ test("lastest_stable_release_data", async t => {
t.context["octokit"] t.context["octokit"]
) )
t.is(typeof result, "object") t.is(typeof result, "object")
t.is(result["tag_name"], "v22.10.2") t.is(result["tag_name"], "v23.04.2")
}) })
test.todo("nextflow_bin_url") test.todo("nextflow_bin_url")