Example #1
0
 it('should return Hello World', function() {
     expect(hello('World')).toBe('Hello World');
 });
Example #2
0
export default function startapp(document) {
    //bootstrap code here

    var hwDiv = document.querySelector('.hello-world');
    hwDiv.innerHTML = hello('World');
}