| 1234567891011121314151617181920212223 |
- /* jshint browser: false, node: true */
- 'use strict';
- var config = {
- plugins: [
- 'benderjs-mocha',
- 'benderjs-chai'
- ],
- framework: 'mocha',
- tests: {
- all: {
- paths: [
- 'tests/**',
- 'node_modules/ckeditor5-*/tests/**'
- ]
- }
- }
- };
- module.exports = config;
|