23 lines
429 B
JavaScript
23 lines
429 B
JavaScript
|
/*
|
||
|
* Copyright (C) Sapphirecode - All Rights Reserved
|
||
|
* This file is part of standard which is released under MIT.
|
||
|
* See file 'LICENSE' for full license details.
|
||
|
* Created by Timo Hocker <timo@scode.ovh>, September 2020
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
module.exports = `
|
||
|
{
|
||
|
"spec_dir": "test",
|
||
|
"spec_files": [
|
||
|
"spec/*.js"
|
||
|
],
|
||
|
"helpers": [
|
||
|
"helpers/*.js"
|
||
|
],
|
||
|
"stopSpecOnExpectationFailure": false,
|
||
|
"random": false
|
||
|
}
|
||
|
`;
|