blob: 056df5b5919cbf76b5e30eab7496e8041e1ae812 [file] [log] [blame]
importScripts('../../../resources/js-test.js');
description('Test Promise.');
var global = this;
global.jsTestIsAsync = true;
new Promise(function(resolve) { resolve('hello'); })
.then()
.then(function(result) {
global.result = result;
shouldBeEqualToString('result', 'hello');
finishJSTest();
});