Skip to content
Snippets Groups Projects
Commit 7f5d86d8 authored by Illya Klymov's avatar Illya Klymov
Browse files

Fix FormData usage in karma tests

parent 4d542db5
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -24,10 +24,7 @@ describe('BlobFileDropzone', function() {
it('is disabled while uploading', () => {
spyOn(window, 'alert');
 
const file = {
name: 'some-file.jpg',
type: 'jpg',
};
const file = new File([], 'some-file.jpg');
const fakeEvent = $.Event('drop', {
dataTransfer: { files: [file] },
});
Loading
Loading
Loading
Loading
@@ -2,9 +2,9 @@ import $ from 'jquery';
import dropzoneInput from '~/dropzone_input';
import { TEST_HOST } from 'spec/test_constants';
 
const TEST_FILE = {
upload: {},
};
const TEST_FILE = new File([], 'somefile.jpg');
TEST_FILE.upload = {};
const TEST_UPLOAD_PATH = `${TEST_HOST}/upload/file`;
const TEST_ERROR_MESSAGE = 'A big error occurred!';
const TEMPLATE = `<form class="gfm-form" data-uploads-path="${TEST_UPLOAD_PATH}">
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment