Adding protractor.

This commit is contained in:
Gunther Brunner
2014-06-02 17:49:32 +09:00
parent 903c183c84
commit 9239ee57b4
3 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
describe('stf app', function () {
describe('App', function () {
it('should show a list of devices', function () {
// TODO: let's get rid off the login first
browser.get('http://localhost:7100/')
expect(true).toEqual(true)
})
})
})