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 Introducing Unit Testing Greater Expectations

i have the exact same code but getting error expect (

var expect = require("chai").expect;

function titleCase (title) { var words = title.split(" "); var titleCasedWords = words.map(function (word){ return word[0].toUpperCase() + word.substring(1); }); return titleCasedWords.join(" ")

} expect(titleCase("the great mouse detective")).to.be.a("string"); expect(titleCase('a')).to.equal("A"); expect(titleCase('vertigo')).to.equal('Vertigo') expect(titleCase("the great mouse detective")).to.equal.("The Great Mouse Detective");

4 Answers

Extra period in last line after the to.equal()

expect(titleCase("the great mouse detective")).to.equal.("The Great Mouse Detective");

to

expect(titleCase("the great mouse detective")).to.equal("The Great Mouse Detective");

I just got changing that still giving me same error

i forgot to save thats why it wasnt working got it thanks

HIDAYATULLAH ARGHANDABI
HIDAYATULLAH ARGHANDABI
21,058 Points

expect(titleCase("the great mouse detective")).to.equal.("The Great Mouse Detective");

you should remove the dot after the equal