hello world

This commit is contained in:
Cody Loyd
2017-08-17 13:47:39 -05:00
parent b9a58bb8c7
commit 9bc987ea0f
4 changed files with 69 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
var helloWorld = require('./helloWorld');
describe('Hello World', function() {
it('says hello world', function() {
expect(helloWorld()).toEqual('Hello, World!');
});
});