diff options
Diffstat (limited to 'tests/frontend/specs/alphabet.js')
-rw-r--r-- | tests/frontend/specs/alphabet.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/frontend/specs/alphabet.js b/tests/frontend/specs/alphabet.js new file mode 100644 index 00000000..131a81c0 --- /dev/null +++ b/tests/frontend/specs/alphabet.js @@ -0,0 +1,27 @@ +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); + }); + +}); |