web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

  1. "use strict";
  2. module.exports = function (t) {
  3. if (typeof Promise !== "function") return null; // Run tests only in ES2015+ env
  4. return {
  5. "Delays execution": function (a, d) {
  6. var invoked = false;
  7. var promise = t(function (resolve) {
  8. invoked = true;
  9. setTimeout(function () { resolve(20); }, 10);
  10. });
  11. a(invoked, false);
  12. setTimeout(function () {
  13. a(invoked, false);
  14. promise.then(function (value) {
  15. a(value, 20);
  16. setTimeout(d, 0); // Escape error swallowing
  17. });
  18. a(invoked, true);
  19. }, 15);
  20. },
  21. "Passes rejection": function (a, d) {
  22. var promise = t(function (resolve, reject) {
  23. setTimeout(function () { reject(new Error("Stop")); }, 10);
  24. });
  25. promise.catch(function (error) {
  26. a(error instanceof Error, true);
  27. a(error.message, "Stop");
  28. setTimeout(d, 0); // Escape error swallowing
  29. });
  30. },
  31. "Passes sync exception": function (a, d) {
  32. var promise = t(function () { throw new Error("Stop"); });
  33. promise.catch(function (error) {
  34. a(error instanceof Error, true);
  35. a(error.message, "Stop");
  36. setTimeout(d, 0); // Escape error swallowing
  37. });
  38. }
  39. };
  40. };