Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/CeibalEncuestaWeb/webapp/test/e2e/scenarios.js
blob: 823960ca90a1ed7a5675d5c81c80641145d6ecc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict';

describe('CeibalEncuesta', function() {

    beforeEach(function() {
        browser().navigateTo("/app/hello.html");
    });

    it('should be hello world!', function() {
        expect(element('html').text()).
            toMatch("hello world!");
    });

});