Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Unit Testing Behavior Driven Development with Mocha & Chai A Testing Test!

Another question on chai methods for unit testing

So I did my answer again trying to be more specific and create an object, but I'm still not passing. Now I'm really lost. I thought deep copy was supposed to work for something like this.

clone_spec.js
var expect = require('chai').expect

describe('clone', function () {
    var clone = require('./clone.js').clone;
    var copy = {
      name: "Alex",
      mood: "ugh"
    };
    it('some description string', function () {

        // YOUR CODE HERE
        expect(clone(copy)).to.deep.equal({name: "Alex", mood: "ugh"});
    });
});
clone.js
function clone (objectForCloning) {
  return Object.assign({}, objectForCloning);
}

module.exports.clone = clone;

1 Answer

Steven Parker
Steven Parker
229,608 Points

You've got the right idea, but place all your added code after the "// YOUR CODE HERE" line.

And you don't need to replicate the object with a literal, you can compare the clone directly to the original. But it will pass just as-is.