diable caret tests for now
parent
617514b335
commit
47029f2e6b
|
@ -1,6 +1,7 @@
|
||||||
describe("As the caret is moved is the UI properly updated?", function(){
|
describe("As the caret is moved is the UI properly updated?", function(){
|
||||||
var padName;
|
var padName;
|
||||||
var numberOfRows = 50;
|
var numberOfRows = 50;
|
||||||
|
/*
|
||||||
|
|
||||||
//create a new pad before each test run
|
//create a new pad before each test run
|
||||||
beforeEach(function(cb){
|
beforeEach(function(cb){
|
||||||
|
@ -8,10 +9,11 @@ describe("As the caret is moved is the UI properly updated?", function(){
|
||||||
this.timeout(60000);
|
this.timeout(60000);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("creates a pad", function(done) {
|
xit("creates a pad", function(done) {
|
||||||
padName = helper.newPad(done);
|
padName = helper.newPad(done);
|
||||||
this.timeout(60000);
|
this.timeout(60000);
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
|
|
||||||
/* Tests to do
|
/* Tests to do
|
||||||
* Keystroke up (38), down (40), left (37), right (39) with and without special keys IE control / shift
|
* Keystroke up (38), down (40), left (37), right (39) with and without special keys IE control / shift
|
||||||
|
@ -26,10 +28,12 @@ describe("As the caret is moved is the UI properly updated?", function(){
|
||||||
* How do we keep the authors focus on a line if the lines above the author are modified? We should only redraw the user to a location if they are typing and make sure shift and arrow keys aren't redrawing the UI else highlight - copy/paste would get broken
|
* How do we keep the authors focus on a line if the lines above the author are modified? We should only redraw the user to a location if they are typing and make sure shift and arrow keys aren't redrawing the UI else highlight - copy/paste would get broken
|
||||||
* How can we simulate an edit event in the test framework?
|
* How can we simulate an edit event in the test framework?
|
||||||
*/
|
*/
|
||||||
|
/*
|
||||||
// THIS DOESNT WORK AS IT DOESNT MOVE THE CURSOR!
|
// THIS DOESNT WORK IN CHROME AS IT DOESNT MOVE THE CURSOR!
|
||||||
it("down arrow", function(done){
|
it("down arrow", function(done){
|
||||||
var inner$ = helper.padInner$;
|
var inner$ = helper.padInner$;
|
||||||
|
var chrome$ = helper.padChrome$;
|
||||||
|
|
||||||
var $newFirstTextElement = inner$("div").first();
|
var $newFirstTextElement = inner$("div").first();
|
||||||
$newFirstTextElement.focus();
|
$newFirstTextElement.focus();
|
||||||
keyEvent(inner$, 37, false, false); // arrow down
|
keyEvent(inner$, 37, false, false); // arrow down
|
||||||
|
@ -37,9 +41,10 @@ describe("As the caret is moved is the UI properly updated?", function(){
|
||||||
|
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
/*
|
|
||||||
it("Creates N lines", function(done){
|
it("Creates N lines", function(done){
|
||||||
var inner$ = helper.padInner$;
|
var inner$ = helper.padInner$;
|
||||||
|
console.log(inner$);
|
||||||
var chrome$ = helper.padChrome$;
|
var chrome$ = helper.padChrome$;
|
||||||
var $newFirstTextElement = inner$("div").first();
|
var $newFirstTextElement = inner$("div").first();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue