Skip to content

Commit d585cfd

Browse files
committed
fixup
1 parent 7e296b7 commit d585cfd

File tree

1 file changed

+51
-51
lines changed

1 file changed

+51
-51
lines changed

tests/warp-drive__ember/tests/integration/get-promise-state-test.gts

+51-51
Original file line numberDiff line numberDiff line change
@@ -224,57 +224,57 @@ module('Integration | get-promise-state', function (hooks) {
224224
assert.equal(this.element.textContent?.trim(), 'Our Error\n Count:\n 1');
225225
});
226226

227-
// test('it unwraps promise-proxies that utilize the secret symbol for error states', async function (this: RenderingTestContext, assert) {
228-
// const _promise = Promise.resolve().then(() => {
229-
// throw new Error('Our Error');
230-
// });
231-
// const promise = new PromiseProxy<never, Error>(_promise);
232-
233-
// try {
234-
// getPromiseState(promise);
235-
// await promise;
236-
// } catch {
237-
// // do nothing
238-
// }
239-
240-
// let state: PromiseState<string, Error>;
241-
// function _getPromiseState<T>(p: Promise<T>): PromiseState<T, Error> {
242-
// state = getPromiseState(p) as PromiseState<string, Error>;
243-
// return state as PromiseState<T, Error>;
244-
// }
245-
// let counter = 0;
246-
// function countFor(_result: unknown, _error: unknown) {
247-
// return ++counter;
248-
// }
249-
250-
// await this.render(
251-
// <template>
252-
// {{#let (_getPromiseState promise) as |state|}}
253-
// {{#if state.isPending}}
254-
// Pending
255-
// {{else if state.isError}}
256-
// {{state.error.message}}
257-
// {{else if state.isSuccess}}
258-
// Invalid Success Reached
259-
// {{/if}}
260-
// <br />Count:
261-
// {{countFor state.result state.error}}{{/let}}
262-
// </template>
263-
// );
264-
265-
// assert.equal(state!.result, null);
266-
// assert.true(state!.error instanceof Error);
267-
// assert.equal((state!.error as Error | undefined)?.message, 'Our Error');
268-
// assert.equal(counter, 1);
269-
// assert.equal(this.element.textContent?.trim(), 'Our Error\n Count:\n 1');
270-
// await rerender();
271-
// assert.equal(state!.result, null);
272-
// assert.true(state!.error instanceof Error);
273-
// assert.equal((state!.error as Error | undefined)?.message, 'Our Error');
274-
// assert.equal(counter, 1);
275-
// assert.equal(this.element.textContent?.trim(), 'Our Error\n Count:\n 1');
276-
// assert.equal(state, getPromiseState(_promise));
277-
// });
227+
test('it unwraps promise-proxies that utilize the secret symbol for error states', async function (this: RenderingTestContext, assert) {
228+
const _promise = Promise.resolve().then(() => {
229+
throw new Error('Our Error');
230+
});
231+
const promise = new PromiseProxy<never, Error>(_promise);
232+
233+
try {
234+
getPromiseState(promise);
235+
await promise;
236+
} catch {
237+
// do nothing
238+
}
239+
240+
let state: PromiseState<string, Error>;
241+
function _getPromiseState<T>(p: Promise<T>): PromiseState<T, Error> {
242+
state = getPromiseState(p) as PromiseState<string, Error>;
243+
return state as PromiseState<T, Error>;
244+
}
245+
let counter = 0;
246+
function countFor(_result: unknown, _error: unknown) {
247+
return ++counter;
248+
}
249+
250+
await this.render(
251+
<template>
252+
{{#let (_getPromiseState promise) as |state|}}
253+
{{#if state.isPending}}
254+
Pending
255+
{{else if state.isError}}
256+
{{state.error.message}}
257+
{{else if state.isSuccess}}
258+
Invalid Success Reached
259+
{{/if}}
260+
<br />Count:
261+
{{countFor state.result state.error}}{{/let}}
262+
</template>
263+
);
264+
265+
assert.equal(state!.result, null);
266+
assert.true(state!.error instanceof Error);
267+
assert.equal((state!.error as Error | undefined)?.message, 'Our Error');
268+
assert.equal(counter, 1);
269+
assert.equal(this.element.textContent?.trim(), 'Our Error\n Count:\n 1');
270+
await rerender();
271+
assert.equal(state!.result, null);
272+
assert.true(state!.error instanceof Error);
273+
assert.equal((state!.error as Error | undefined)?.message, 'Our Error');
274+
assert.equal(counter, 1);
275+
assert.equal(this.element.textContent?.trim(), 'Our Error\n Count:\n 1');
276+
assert.equal(state, getPromiseState(_promise));
277+
});
278278

279279
test('it unwraps promise-proxies that utilize the secret symbol for success states', async function (this: RenderingTestContext, assert) {
280280
const _promise = Promise.resolve().then(() => 'Our Data');

0 commit comments

Comments
 (0)