Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. describe('aGreatEye component tests', function() {
  2. var app;
  3.  
  4. beforeEach(function() {
  5. app = testRunner.app(['myApp']);
  6. }
  7.  
  8. it('new test', function () {
  9. var html = app.runHtml('<a-great-eye></a-great-eye>');
  10.  
  11. html.verify(
  12. expectElement('h1').toHaveText('lidless, wreathed in flame, 2 times')
  13. );
  14. });
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement