소스 검색

fix image width

Girish Ramakrishnan 8 년 전
부모
커밋
6d0deebd38
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/test.js

+ 1 - 1
test/test.js

@@ -130,7 +130,7 @@ describe('Application life cycle test', function () {
         browser.wait(until.elementLocated(by.xpath('//img[@src="/uploads/profile/1-profileimg.png"]')), TEST_TIMEOUT);
         var img = browser.findElement(by.xpath('//img[@src="/uploads/profile/1-profileimg.png"]'));
         browser.executeScript('return arguments[0].complete && arguments[0].naturalWidth', img).then(function (imageWidth) {
-            done(imageWidth === 250 ? null : new Error('failed to load image'));
+            done(imageWidth === 128 ? null : new Error('failed to load image'));
         });
     }