mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:23:25 +02:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
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)
|
|
})
|
|
})
|
|
})
|