This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var runTests = function(callback) { | |
var testsFinishedCount = 0; | |
var testFailures = []; | |
var layouts = config.SETTINGS.layouts; | |
var processNextLayout = function() { | |
var layout = layouts.shift(); | |
if (layout) { | |
var rasterizeCmd = RASTERIZE_CMD_TEMPLATE({ | |
url: buildUrl(layout.url), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
location /fixtureSets/[email protected]/li/v1/messages/I104314743_13.json { | |
return 500; | |
} | |
location /fixtureSets/[email protected]/li/v1/messages/I20534832_13.json { | |
return 204; | |
} | |
location /fixtureSets/[email protected]/li/v1/messages/I16014045_13.json { | |
echo '{"statusCode":200,"message":"OK"}'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void ShareSpecialCharTest() { | |
login(g_userDataMap.get(Constants.DEFAULT_USER)); | |
g_nav.clickLeftButton(); | |
String shareBody = Util.currentTime() + " " + TestData.SHARE_SPECIAL_CHAR; | |
HomeTest.verifyShareOnRecentActivity(driver, g_nav, shareBody); | |
} |