mySizeTest

PHOTO EMBED

Wed Aug 02 2023 13:08:44 GMT+0000 (Coordinated Universal Time)

Saved by @apatari6301

describe('mySize', function () {
    const testArr = [1,2,3,4] //This line modified from original test for readability
    const testObj = Object.assign({}, unmodifiedTestObj)

    it('correctly returns the size of the collection when an array is passed', function () {
      expect(mySize(testArr)).to.equal(testArr.length)
    })
...
content_copyCOPY