Merge pull request #7 from schoettkr/master

Adapt test description to the test
This commit is contained in:
Cody Loyd 2018-01-02 08:48:16 -06:00 committed by GitHub
commit a16fd433bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
var reverseString = require('./reverseString')
describe('Hello World', function() {
describe('reverseString', function() {
it('reverses single word', function() {
expect(reverseString('hello')).toEqual('olleh');
});