Missing semi-colons
authorVojta Jina <vojta.jina@gmail.com>
Mon, 13 Jun 2011 16:38:11 +0000 (18:38 +0200)
committerVojta Jina <vojta.jina@gmail.com>
Mon, 13 Jun 2011 16:38:11 +0000 (18:38 +0200)
test/e2e/scenarios.js

index 6c958a3..54b9a13 100644 (file)
@@ -19,7 +19,7 @@ describe('my app', function() {
 
     it('should render view1 when user navigates to /view1', function() {
       expect(element('ng\\:view p:first').text()).
-        toMatch(/partial for view 1/)
+        toMatch(/partial for view 1/);
     });
 
   });
@@ -34,7 +34,7 @@ describe('my app', function() {
 
     it('should render view1 when user navigates to /view2', function() {
       expect(element('ng\\:view p:first').text()).
-        toMatch(/partial for view 2/)
+        toMatch(/partial for view 2/);
     });
 
   });