From a2b1c48b247d5f5b4b11fa0fe4e9a838d5912db0 Mon Sep 17 00:00:00 2001 From: jochen Date: Fri, 24 Mar 2023 08:45:40 +0100 Subject: [PATCH] update tests --- .github/workflows/test.yml | 1 + test/api_test.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5fc798d..1a7566d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,6 +6,7 @@ jobs: test: runs-on: ubuntu-latest strategy: + max-parallel: 1 matrix: node: [ 14, 16, 18, "lts/*" ] steps: diff --git a/test/api_test.js b/test/api_test.js index 9f168ca..f8bc309 100644 --- a/test/api_test.js +++ b/test/api_test.js @@ -41,7 +41,7 @@ describe('Api Tests', function() { }); }); - it('should error when not test is found', function(done) { + it('should error when no test is found', function(done) { this.api.getTestDetails(324234234324, function(err, response) { assert.equal(null, response); assert.notEqual(err, null);