|
1 |
| -import { waitFor } from '@testing-library/dom' |
| 1 | +import {waitFor} from '@testing-library/dom' |
2 | 2 | import {createDataTransfer, getBlobFromDataTransferItem} from '#src/utils'
|
3 | 3 |
|
4 | 4 | describe('create DataTransfer', () => {
|
@@ -45,12 +45,14 @@ describe('create DataTransfer', () => {
|
45 | 45 | const dt = createDataTransfer(window, [f0, f1])
|
46 | 46 | dt.setData('text/html', 'foo')
|
47 | 47 |
|
48 |
| - expect(dt.types).toEqual(expect.arrayContaining( |
| 48 | + expect(dt.types).toEqual( |
| 49 | + expect.arrayContaining( |
49 | 50 | // TODO: Fix DataTransferStub
|
50 | 51 | typeof window.DataTransfer === 'undefined'
|
51 |
| - ? ['Files', 'text/html'] |
52 |
| - : ['text/html'] |
53 |
| - )) |
| 52 | + ? ['Files', 'text/html'] |
| 53 | + : ['text/html'], |
| 54 | + ), |
| 55 | + ) |
54 | 56 | expect(dt.files.length).toBe(2)
|
55 | 57 | })
|
56 | 58 |
|
@@ -108,16 +110,18 @@ test('get Blob from DataTransfer', async () => {
|
108 | 110 | dt.items.add('foo', 'text/plain')
|
109 | 111 | dt.items.add(new File(['bar'], 'bar.txt', {type: 'text/plain'}))
|
110 | 112 |
|
111 |
| - expect(getBlobFromDataTransferItem(window, dt.items[0])).toHaveProperty( |
| 113 | + expect(await getBlobFromDataTransferItem(window, dt.items[0])).toHaveProperty( |
112 | 114 | 'type',
|
113 | 115 | 'text/plain',
|
114 | 116 | )
|
115 |
| - expect(getBlobFromDataTransferItem(window, dt.items[0])).not.toBeInstanceOf( |
116 |
| - File, |
117 |
| - ) |
118 |
| - expect(getBlobFromDataTransferItem(window, dt.items[1])).toHaveProperty( |
| 117 | + expect( |
| 118 | + await getBlobFromDataTransferItem(window, dt.items[0]), |
| 119 | + ).not.toBeInstanceOf(File) |
| 120 | + expect(await getBlobFromDataTransferItem(window, dt.items[1])).toHaveProperty( |
119 | 121 | 'type',
|
120 | 122 | 'text/plain',
|
121 | 123 | )
|
122 |
| - expect(getBlobFromDataTransferItem(window, dt.items[1])).toBeInstanceOf(File) |
| 124 | + expect(await getBlobFromDataTransferItem(window, dt.items[1])).toBeInstanceOf( |
| 125 | + File, |
| 126 | + ) |
123 | 127 | })
|
0 commit comments