File tree 2 files changed +0
-13
lines changed
2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import * as QUnit from 'qunit';
2
2
3
3
QUnit . config . autostart = false ;
4
4
QUnit . config . urlConfig . push ( { id : 'nocontainer' , label : 'Hide container' } ) ;
5
- QUnit . config . urlConfig . push ( { id : 'nolint' , label : 'Disable Linting' } ) ;
6
5
QUnit . config . urlConfig . push ( { id : 'devmode' , label : 'Development mode' } ) ;
7
6
8
7
QUnit . config . testTimeout = QUnit . urlParams . devmode ? null : 60000 ; //Default Test Timeout 60 Seconds
Original file line number Diff line number Diff line change 1
1
import * as QUnit from 'qunit' ;
2
2
import AbstractTestLoader , {
3
- addModuleExcludeMatcher ,
4
3
addModuleIncludeMatcher ,
5
4
} from 'ember-cli-test-loader/test-support/index' ;
6
5
7
- addModuleExcludeMatcher ( function ( moduleName ) {
8
- return QUnit . urlParams . nolint && moduleName . match ( / \. ( j s h i n t | l i n t - t e s t ) $ / ) ;
9
- } ) ;
10
-
11
6
addModuleIncludeMatcher ( function ( moduleName ) {
12
7
return moduleName . match ( / \. j s h i n t $ / ) ;
13
8
} ) ;
@@ -46,13 +41,6 @@ export class TestLoader extends AbstractTestLoader {
46
41
Load tests following the default patterns:
47
42
48
43
* The module name ends with `-test`
49
- * The module name ends with `.jshint`
50
-
51
- Excludes tests that match the following
52
- patterns when `?nolint` URL param is set:
53
-
54
- * The module name ends with `.jshint`
55
- * The module name ends with `-lint-test`
56
44
57
45
@method loadTests
58
46
*/
You can’t perform that action at this time.
0 commit comments