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);