blob: 00ad153e0e8ed3e4db4ff5309137187d342ceece [file] [log] [blame]
importScripts('../../resources/js-test-pre.js');
description('Test Promise.');
var global = this;
global.jsTestIsAsync = true;
var resolver;
var firstPromise = new Promise(function(newResolver) {
global.thisInInit = this;
resolver = newResolver;
});
var secondPromise = firstPromise.then(function(result) {
global.thisInFulfillCallback = this;
shouldBeFalse('thisInFulfillCallback === firstPromise');
shouldBeTrue('thisInFulfillCallback === secondPromise');
global.result = result;
shouldBeEqualToString('result', 'hello');
finishJSTest();
});
shouldBeTrue('thisInInit === firstPromise');
shouldBeTrue('firstPromise instanceof Promise');
shouldBeTrue('secondPromise instanceof Promise');
shouldThrow('firstPromise.then(null)', '"TypeError: Expected function or undefined as as first argument"');
shouldThrow('firstPromise.then(undefined, null)', '"TypeError: Expected function or undefined as as second argument"');
shouldThrow('firstPromise.then(37)', '"TypeError: Expected function or undefined as as first argument"');
resolver.fulfill('hello');