blob: 87eafda109027cba44e4cbce00f5b7d1886c5a37 [file] [log] [blame]
'use strict';
var assert = require('assert');
describe('The Apache Sling Resource Editor', function() {
it('should have a title', function(done) {
browser
.url('http://localhost:8080/reseditor/.html')
.getTitle(function(err,title) {
assert(title.indexOf('Apache Sling Resource Editor') !== -1);
})
.call(done);
});
});