1.0.2 • Published 3 years ago

jsdom-add-files v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

jsdom-add-files

Adds local files to a HTML file input in jsdom and fires the change event. Inspired by jsdom ticket #1272

Install

npm install --save jsdom-add-files

Usage

var path = require('path');
var jsdomAddFiles = require('jsdom-add-files');

// get file input
var fileInput = document.querySelector('input[type="file"]');

// add files (automatically fires onchange event)
jsdomAddFiles(fileInput, [
    path.join(__dirname, 'file1.jpg'),
    path.join(__dirname, 'file2.jpg'),
    path.join(__dirname, 'file3.png')
]);

License

Licensed under MIT License © John Doherty

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago