Ghost/ghost/admin/tests/helpers/file-upload.js
Kevin Ansfield e74e2e039e Update code to match eslint rules
no issue
- switch `jscs` and `jshint` inline config to `eslint` config
- fix eslint errors, predominantly in tests where the config now the main app config more closely
2016-11-14 13:26:00 +00:00

36 lines
833 B
JavaScript

/* global Blob */
import $ from 'jquery';
import Test 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 Test.registerAsyncHelper('fileUpload', function(app, selector, content, options) {
let file = createFile(content, options);
return triggerEvent(
selector,
'change',
{foor: 'bar', testingFiles: [file]}
);
});