mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-13 07:00:06 +00:00
chore(lint): fixed linting issues
This commit is contained in:
@@ -28,7 +28,7 @@ export const generateTableUploadForm = (
|
||||
const csvChunks = splitChunks(csv)
|
||||
|
||||
// append chunks to form data with same key
|
||||
csvChunks.map((chunk) => {
|
||||
csvChunks.map(chunk => {
|
||||
formData.append(`sasjs${tableCounter}data`, chunk)
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -7,7 +7,6 @@ describe('generateFileUploadForm', () => {
|
||||
}
|
||||
|
||||
const BlobMock = jest.fn()
|
||||
|
||||
;(global as any).FormData = FormDataMock
|
||||
;(global as any).Blob = BlobMock
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user