From 09f8e5dbdefdb8655c8800b9a67a1750b0333e0f Mon Sep 17 00:00:00 2001 From: Dane Smith Date: Wed, 18 Oct 2023 21:30:42 -0500 Subject: [PATCH] Update test.js --- test/test.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/test/test.js b/test/test.js index 425134cc..7dd174a4 100644 --- a/test/test.js +++ b/test/test.js @@ -105,17 +105,17 @@ describe('Automated tests', function () { expect(basket.length, "empty() needs to empty the basket").to.equal(0); }) }) - describe(`Functions are tested using console.log()`, function () { - it(`Functions are tested using console.log()`, function () { - if (typeof counter === 'undefined') { - // Skip this test if running on the server - this.skip(); - } else { - // Only run this test in the browser - expect(counter, `console.log() was only called ${counter} times.`).to.be.greaterThan(3); - } - }); - }); + // describe(`Functions are tested using console.log()`, function () { + // it(`Functions are tested using console.log()`, function () { + // if (typeof counter === 'undefined') { + // // Skip this test if running on the server + // this.skip(); + // } else { + // // Only run this test in the browser + // expect(counter, `console.log() was only called ${counter} times.`).to.be.greaterThan(3); + // } + // }); + // }); describe('STRETCH: Added a global const named `maxItems` and set it to 5', function () { it('STRETCH: Added a global const named `maxItems` and set it to 5', function () { let { maxItems } = testItems;