@@ -224,57 +224,57 @@ module('Integration | get-promise-state', function (hooks) {
224
224
assert .equal (this .element .textContent ?.trim (), ' Our Error\n Count:\n 1' );
225
225
});
226
226
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
+ });
278
278
279
279
test (' it unwraps promise-proxies that utilize the secret symbol for success states' , async function (this : RenderingTestContext , assert ) {
280
280
const _promise = Promise .resolve ().then (() => ' Our Data' );
0 commit comments