mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
983110d931
no issue - add eslint-plugin-ember, configure no-old-shims rule - run `eslint --fix` on `app`, `lib`, `mirage`, and `tests` to move imports to the new module imports - further cleanup of Ember globals usage - remove event-dispatcher initializer now that `canDispatchToEventManager` is deprecated
36 lines
833 B
JavaScript
36 lines
833 B
JavaScript
/* global Blob */
|
|
import $ from 'jquery';
|
|
import {registerAsyncHelper} from '@ember/test';
|
|
|
|
export function createFile(content = ['test'], options = {}) {
|
|
let {
|
|
name,
|
|
type
|
|
} = options;
|
|
|
|
let file = new Blob(content, {type: type ? type : 'text/plain'});
|
|
file.name = name ? name : 'test.txt';
|
|
|
|
return file;
|
|
}
|
|
|
|
export function fileUpload($element, content, options) {
|
|
let file = createFile(content, options);
|
|
// eslint-disable-next-line new-cap
|
|
let event = $.Event('change', {
|
|
testingFiles: [file]
|
|
});
|
|
|
|
$element.trigger(event);
|
|
}
|
|
|
|
export default registerAsyncHelper('fileUpload', function(app, selector, content, options) {
|
|
let file = createFile(content, options);
|
|
|
|
return triggerEvent(
|
|
selector,
|
|
'change',
|
|
{testingFiles: [file]}
|
|
);
|
|
});
|