Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

barnetobeka
Courses Plus Student 10,895 PointsWorking with **CHAI**
Since the objects are different even though have the same properties But i have tried using the to.be.equal on clone() But failed
var expect = require('chai').expect
describe('clone', function () {
var clone = require('./clone.js')
it('some description string', function () {
// YOUR CODE HERE
expect(clone(objectForCloning)).to.be.ok;
})
})
function clone (objectForCloning) {
return Object.assign({}, objectForCloning)
}
module.exports = clone;
1 Answer

Steven Parker
221,296 PointsYou had the right idea the first time.
Since you're testing that a copy is valid, it makes sense that you would use "to.be.equal", but you may have omitted a few things:
- you'll need to create a sample object to be cloned first
- you'll need to perform the clone function on the sample object
- your test will require an extra element in the chain to account for the properties inside the object
- that extra element is what they were hinting you might want to check the documentation for