2020-09-24 07:41:23 +02:00
|
|
|
/*
|
|
|
|
* 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": [
|
2020-10-03 14:54:25 +02:00
|
|
|
"spec/*.js",
|
|
|
|
"spec/*.ts"
|
2020-09-24 07:41:23 +02:00
|
|
|
],
|
|
|
|
"helpers": [
|
2020-10-03 14:54:25 +02:00
|
|
|
"helpers/*.js",
|
|
|
|
"helpers/*.ts"
|
2020-09-24 07:41:23 +02:00
|
|
|
],
|
|
|
|
"stopSpecOnExpectationFailure": false,
|
|
|
|
"random": false
|
|
|
|
}
|
|
|
|
`;
|