Okay disable uploads for now, looks like a PhantomJS bug

This commit is contained in:
Robin Ward 2015-11-06 14:21:52 -05:00
parent 7baed4eb51
commit b699d43b1b

View file

@ -220,23 +220,26 @@ var runTests = function() {
return document.querySelector("#filename-input");
});
upload("#filename-input", "spec/fixtures/images/large & unoptimized.png");
test("the file is inserted into the input", function() {
return document.getElementById('filename-input').files.length
});
screenshot('/tmp/upload-modal.png');
// TODO: Looks like PhantomJS 2.0.0 has a bug with `uploadFile`
// which breaks this code.
test("upload modal is open", function() {
return document.querySelector("#filename-input");
});
exec("click upload button", function() {
$(".modal .btn-primary").click();
});
test("image is uploaded", function() {
return document.querySelector(".cooked img");
});
// upload("#filename-input", "spec/fixtures/images/large & unoptimized.png");
// test("the file is inserted into the input", function() {
// return document.getElementById('filename-input').files.length
// });
// screenshot('/tmp/upload-modal.png');
//
// test("upload modal is open", function() {
// return document.querySelector("#filename-input");
// });
//
// exec("click upload button", function() {
// $(".modal .btn-primary").click();
// });
//
// test("image is uploaded", function() {
// return document.querySelector(".cooked img");
// });
exec("submit the topic", function() {
$("#reply-control .create").click();