Merge remote-tracking branch 'origin/master' into custom

This commit is contained in:
Roy Tam 2019-04-13 07:34:39 +08:00
commit 2b48a6c6ee
48 changed files with 1596 additions and 1006 deletions

View file

@ -29,12 +29,12 @@ function run_test_with_server(server, cb) {
addSources(debuggee);
threadClient.getSources(Task.async(function* (res) {
do_check_true(res.sources.length === 3, "3 sources exist");
do_check_eq(res.sources.length, 3, "3 sources exist");
yield threadClient.reconfigure({ useSourceMaps: false });
threadClient.getSources(function(res) {
do_check_true(res.sources.length === 1, "1 source exist");
do_check_eq(res.sources.length, 1, "1 source exist");
client.close().then(cb);
});
}));