Skip to content

Commit 0f2fc07

Browse files
committed
Print cloud errors in console if present.
1 parent 1c6dcf0 commit 0f2fc07

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

src/composables/useAsync.ts

+2
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ export const useAsync = <R>(
6161
data.value = result;
6262
}
6363
} catch ( err: any ) {
64+
console.error( err );
65+
6466
if ( !shouldDiscardQuery() ) {
6567
error.value = err;
6668
}

tests/composables/useAsync.test.ts

+15-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* For licensing, see LICENSE.md.
44
*/
55

6-
import { it, describe, expect } from 'vitest';
6+
import { it, vi, describe, expect } from 'vitest';
77
import { ref } from 'vue';
88
import { flushPromises } from '@vue/test-utils';
99

@@ -42,6 +42,20 @@ describe( 'useAsync', () => {
4242
expect( data.value ).toBe( null );
4343
} );
4444

45+
it( 'should print errors in console if the async function throws an error', async () => {
46+
const errorInstance = new Error( 'test' );
47+
const consoleSpy = vi.spyOn( console, 'error' );
48+
49+
useAsync( async () => {
50+
throw errorInstance;
51+
} );
52+
53+
await flushPromises();
54+
55+
expect( consoleSpy ).toHaveBeenCalledWith( errorInstance );
56+
consoleSpy.mockRestore();
57+
} );
58+
4559
it( 'should re-run async function on change ref inside async function', async () => {
4660
const refValue = ref( 0 );
4761
const { data } = useAsync( async () => refValue.value );

0 commit comments

Comments
 (0)