mirror of
https://github.com/zadam/trilium.git
synced 2025-10-28 00:36:33 +01:00
9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
|
|
module.exports = config => {
|
||
|
|
config.set({
|
||
|
|
frameworks: ['jasmine'],
|
||
|
|
browsers: ['FirefoxHeadless', 'ChromeHeadless'],
|
||
|
|
singleRun: true,
|
||
|
|
files: ['dist/split.js', 'test/split.spec.js'],
|
||
|
|
})
|
||
|
|
}
|