diff options
author | Mario <mario@mariovavti.com> | 2020-01-11 10:30:12 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-01-11 10:30:12 +0000 |
commit | f645c6f3a57bf5f53bbb2bde362b2447f725c977 (patch) | |
tree | 9b37650aad46296c5d98a55969348ebb4ee2d097 /library/cropperjs/test/karma.conf.js | |
parent | 4c1c6908165e5c4fb1b7238f66764f89faa2301a (diff) | |
download | volse-hubzilla-f645c6f3a57bf5f53bbb2bde362b2447f725c977.tar.gz volse-hubzilla-f645c6f3a57bf5f53bbb2bde362b2447f725c977.tar.bz2 volse-hubzilla-f645c6f3a57bf5f53bbb2bde362b2447f725c977.zip |
update cropperjs to the recent version
Diffstat (limited to 'library/cropperjs/test/karma.conf.js')
-rw-r--r-- | library/cropperjs/test/karma.conf.js | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/library/cropperjs/test/karma.conf.js b/library/cropperjs/test/karma.conf.js new file mode 100644 index 000000000..1ccf4d6d7 --- /dev/null +++ b/library/cropperjs/test/karma.conf.js @@ -0,0 +1,46 @@ +const puppeteer = require('puppeteer'); +const rollupConfig = require('../rollup.config'); + +process.env.CHROME_BIN = puppeteer.executablePath(); + +module.exports = (config) => { + config.set({ + autoWatch: false, + basePath: '..', + browsers: ['ChromeHeadless'], + client: { + mocha: { + timeout: 10000, + }, + }, + coverageIstanbulReporter: { + reports: ['html', 'lcovonly', 'text-summary'], + }, + files: [ + 'src/index.js', + 'dist/cropper.css', + 'test/helpers.js', + 'test/specs/**/*.spec.js', + { + pattern: 'docs/images/*', + included: false, + }, + ], + frameworks: ['mocha', 'chai'], + preprocessors: { + 'src/index.js': ['rollup'], + 'test/helpers.js': ['rollup'], + 'test/specs/**/*.spec.js': ['rollup'], + }, + reporters: ['mocha', 'coverage-istanbul'], + rollupPreprocessor: { + plugins: rollupConfig.plugins, + output: { + format: 'iife', + name: rollupConfig.output[0].name, + sourcemap: 'inline', + }, + }, + singleRun: true, + }); +}; |