04e9fc3a2f
This is a followup on 312c72c364
, which did the same on the main code base,
and is preliminary work for tidying up John's changes in the following commits.
No functional changes.
Command:
find tests/frontend -name '*.js' -type f -print0 | xargs -0 sed --in-place 's/[[:space:]]*$//'
27 lines
848 B
JavaScript
27 lines
848 B
JavaScript
describe("All the alphabet works n stuff", function(){
|
|
var expectedString = "abcdefghijklmnopqrstuvwxyz";
|
|
|
|
//create a new pad before each test run
|
|
beforeEach(function(cb){
|
|
helper.newPad(cb);
|
|
this.timeout(60000);
|
|
});
|
|
|
|
it("when you enter any char it appears right", function(done) {
|
|
var inner$ = helper.padInner$;
|
|
var chrome$ = helper.padChrome$;
|
|
|
|
//get the first text element out of the inner iframe
|
|
var firstTextElement = inner$("div").first();
|
|
|
|
// simulate key presses to delete content
|
|
firstTextElement.sendkeys('{selectall}'); // select all
|
|
firstTextElement.sendkeys('{del}'); // clear the first line
|
|
firstTextElement.sendkeys(expectedString); // insert the string
|
|
|
|
helper.waitFor(function(){
|
|
return inner$("div").first().text() === expectedString;
|
|
}, 2000).done(done);
|
|
});
|
|
|
|
});
|