ember-source 2.17.2 → 2.18.0.beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/dist/ember-runtime.js +302 -253
- data/dist/ember-template-compiler.js +491 -532
- data/dist/ember-testing.js +43 -41
- data/dist/ember-tests.js +1300 -987
- data/dist/ember-tests.prod.js +197 -361
- data/dist/ember.debug.js +6190 -7041
- data/dist/ember.min.js +532 -553
- data/dist/ember.prod.js +3806 -4498
- data/package.json +14 -16
- metadata +5 -5
data/dist/ember-testing.js
CHANGED
@@ -6,51 +6,14 @@
|
|
6
6
|
* Portions Copyright 2008-2011 Apple Inc. All rights reserved.
|
7
7
|
* @license Licensed under MIT license
|
8
8
|
* See https://raw.github.com/emberjs/ember.js/master/LICENSE
|
9
|
-
* @version 2.
|
9
|
+
* @version 2.18.0-beta.1
|
10
10
|
*/
|
11
11
|
|
12
|
+
/*global process */
|
12
13
|
var enifed, requireModule, Ember;
|
13
14
|
var mainContext = this; // Used in ember-environment/lib/global.js
|
14
15
|
|
15
16
|
(function() {
|
16
|
-
var isNode = typeof window === 'undefined' &&
|
17
|
-
typeof process !== 'undefined' && {}.toString.call(process) === '[object process]';
|
18
|
-
|
19
|
-
if (!isNode) {
|
20
|
-
Ember = this.Ember = this.Ember || {};
|
21
|
-
}
|
22
|
-
|
23
|
-
if (typeof Ember === 'undefined') { Ember = {}; }
|
24
|
-
|
25
|
-
if (typeof Ember.__loader === 'undefined') {
|
26
|
-
var registry = {};
|
27
|
-
var seen = {};
|
28
|
-
|
29
|
-
enifed = function(name, deps, callback) {
|
30
|
-
var value = { };
|
31
|
-
|
32
|
-
if (!callback) {
|
33
|
-
value.deps = [];
|
34
|
-
value.callback = deps;
|
35
|
-
} else {
|
36
|
-
value.deps = deps;
|
37
|
-
value.callback = callback;
|
38
|
-
}
|
39
|
-
|
40
|
-
registry[name] = value;
|
41
|
-
};
|
42
|
-
|
43
|
-
requireModule = function(name) {
|
44
|
-
return internalRequire(name, null);
|
45
|
-
};
|
46
|
-
|
47
|
-
// setup `require` module
|
48
|
-
requireModule['default'] = requireModule;
|
49
|
-
|
50
|
-
requireModule.has = function registryHas(moduleName) {
|
51
|
-
return !!registry[moduleName] || !!registry[moduleName + '/index'];
|
52
|
-
};
|
53
|
-
|
54
17
|
function missingModule(name, referrerName) {
|
55
18
|
if (referrerName) {
|
56
19
|
throw new Error('Could not find module ' + name + ' required by: ' + referrerName);
|
@@ -99,6 +62,44 @@ var mainContext = this; // Used in ember-environment/lib/global.js
|
|
99
62
|
return exports;
|
100
63
|
}
|
101
64
|
|
65
|
+
var isNode = typeof window === 'undefined' &&
|
66
|
+
typeof process !== 'undefined' && {}.toString.call(process) === '[object process]';
|
67
|
+
|
68
|
+
if (!isNode) {
|
69
|
+
Ember = this.Ember = this.Ember || {};
|
70
|
+
}
|
71
|
+
|
72
|
+
if (typeof Ember === 'undefined') { Ember = {}; }
|
73
|
+
|
74
|
+
if (typeof Ember.__loader === 'undefined') {
|
75
|
+
var registry = {};
|
76
|
+
var seen = {};
|
77
|
+
|
78
|
+
enifed = function(name, deps, callback) {
|
79
|
+
var value = { };
|
80
|
+
|
81
|
+
if (!callback) {
|
82
|
+
value.deps = [];
|
83
|
+
value.callback = deps;
|
84
|
+
} else {
|
85
|
+
value.deps = deps;
|
86
|
+
value.callback = callback;
|
87
|
+
}
|
88
|
+
|
89
|
+
registry[name] = value;
|
90
|
+
};
|
91
|
+
|
92
|
+
requireModule = function(name) {
|
93
|
+
return internalRequire(name, null);
|
94
|
+
};
|
95
|
+
|
96
|
+
// setup `require` module
|
97
|
+
requireModule['default'] = requireModule;
|
98
|
+
|
99
|
+
requireModule.has = function registryHas(moduleName) {
|
100
|
+
return !!registry[moduleName] || !!registry[moduleName + '/index'];
|
101
|
+
};
|
102
|
+
|
102
103
|
requireModule._eak_seen = registry;
|
103
104
|
|
104
105
|
Ember.__loader = {
|
@@ -2570,16 +2571,17 @@ enifed('ember-testing/test/waiters', ['exports', 'ember-debug'], function (expor
|
|
2570
2571
|
return -1;
|
2571
2572
|
}
|
2572
2573
|
});
|
2574
|
+
/*global enifed */
|
2573
2575
|
enifed('node-module', ['exports'], function(_exports) {
|
2574
2576
|
var IS_NODE = typeof module === 'object' && typeof module.require === 'function';
|
2575
2577
|
if (IS_NODE) {
|
2576
2578
|
_exports.require = module.require;
|
2577
2579
|
_exports.module = module;
|
2578
|
-
_exports.IS_NODE = IS_NODE
|
2580
|
+
_exports.IS_NODE = IS_NODE;
|
2579
2581
|
} else {
|
2580
2582
|
_exports.require = null;
|
2581
2583
|
_exports.module = null;
|
2582
|
-
_exports.IS_NODE = IS_NODE
|
2584
|
+
_exports.IS_NODE = IS_NODE;
|
2583
2585
|
}
|
2584
2586
|
});
|
2585
2587
|
var testing = requireModule('ember-testing');
|
data/dist/ember-tests.js
CHANGED
@@ -6,51 +6,14 @@
|
|
6
6
|
* Portions Copyright 2008-2011 Apple Inc. All rights reserved.
|
7
7
|
* @license Licensed under MIT license
|
8
8
|
* See https://raw.github.com/emberjs/ember.js/master/LICENSE
|
9
|
-
* @version 2.
|
9
|
+
* @version 2.18.0-beta.1
|
10
10
|
*/
|
11
11
|
|
12
|
+
/*global process */
|
12
13
|
var enifed, requireModule, Ember;
|
13
14
|
var mainContext = this; // Used in ember-environment/lib/global.js
|
14
15
|
|
15
16
|
(function() {
|
16
|
-
var isNode = typeof window === 'undefined' &&
|
17
|
-
typeof process !== 'undefined' && {}.toString.call(process) === '[object process]';
|
18
|
-
|
19
|
-
if (!isNode) {
|
20
|
-
Ember = this.Ember = this.Ember || {};
|
21
|
-
}
|
22
|
-
|
23
|
-
if (typeof Ember === 'undefined') { Ember = {}; }
|
24
|
-
|
25
|
-
if (typeof Ember.__loader === 'undefined') {
|
26
|
-
var registry = {};
|
27
|
-
var seen = {};
|
28
|
-
|
29
|
-
enifed = function(name, deps, callback) {
|
30
|
-
var value = { };
|
31
|
-
|
32
|
-
if (!callback) {
|
33
|
-
value.deps = [];
|
34
|
-
value.callback = deps;
|
35
|
-
} else {
|
36
|
-
value.deps = deps;
|
37
|
-
value.callback = callback;
|
38
|
-
}
|
39
|
-
|
40
|
-
registry[name] = value;
|
41
|
-
};
|
42
|
-
|
43
|
-
requireModule = function(name) {
|
44
|
-
return internalRequire(name, null);
|
45
|
-
};
|
46
|
-
|
47
|
-
// setup `require` module
|
48
|
-
requireModule['default'] = requireModule;
|
49
|
-
|
50
|
-
requireModule.has = function registryHas(moduleName) {
|
51
|
-
return !!registry[moduleName] || !!registry[moduleName + '/index'];
|
52
|
-
};
|
53
|
-
|
54
17
|
function missingModule(name, referrerName) {
|
55
18
|
if (referrerName) {
|
56
19
|
throw new Error('Could not find module ' + name + ' required by: ' + referrerName);
|
@@ -99,6 +62,44 @@ var mainContext = this; // Used in ember-environment/lib/global.js
|
|
99
62
|
return exports;
|
100
63
|
}
|
101
64
|
|
65
|
+
var isNode = typeof window === 'undefined' &&
|
66
|
+
typeof process !== 'undefined' && {}.toString.call(process) === '[object process]';
|
67
|
+
|
68
|
+
if (!isNode) {
|
69
|
+
Ember = this.Ember = this.Ember || {};
|
70
|
+
}
|
71
|
+
|
72
|
+
if (typeof Ember === 'undefined') { Ember = {}; }
|
73
|
+
|
74
|
+
if (typeof Ember.__loader === 'undefined') {
|
75
|
+
var registry = {};
|
76
|
+
var seen = {};
|
77
|
+
|
78
|
+
enifed = function(name, deps, callback) {
|
79
|
+
var value = { };
|
80
|
+
|
81
|
+
if (!callback) {
|
82
|
+
value.deps = [];
|
83
|
+
value.callback = deps;
|
84
|
+
} else {
|
85
|
+
value.deps = deps;
|
86
|
+
value.callback = callback;
|
87
|
+
}
|
88
|
+
|
89
|
+
registry[name] = value;
|
90
|
+
};
|
91
|
+
|
92
|
+
requireModule = function(name) {
|
93
|
+
return internalRequire(name, null);
|
94
|
+
};
|
95
|
+
|
96
|
+
// setup `require` module
|
97
|
+
requireModule['default'] = requireModule;
|
98
|
+
|
99
|
+
requireModule.has = function registryHas(moduleName) {
|
100
|
+
return !!registry[moduleName] || !!registry[moduleName + '/index'];
|
101
|
+
};
|
102
|
+
|
102
103
|
requireModule._eak_seen = registry;
|
103
104
|
|
104
105
|
Ember.__loader = {
|
@@ -148,6 +149,24 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
148
149
|
assert.ok(true, 'container.js should pass ESLint\n\n');
|
149
150
|
});
|
150
151
|
|
152
|
+
QUnit.module('ESLint | container/lib/container.js');
|
153
|
+
QUnit.test('should pass ESLint', function(assert) {
|
154
|
+
assert.expect(1);
|
155
|
+
assert.ok(true, 'container/lib/container.js should pass ESLint\n\n');
|
156
|
+
});
|
157
|
+
|
158
|
+
QUnit.module('ESLint | container/lib/index.js');
|
159
|
+
QUnit.test('should pass ESLint', function(assert) {
|
160
|
+
assert.expect(1);
|
161
|
+
assert.ok(true, 'container/lib/index.js should pass ESLint\n\n');
|
162
|
+
});
|
163
|
+
|
164
|
+
QUnit.module('ESLint | container/lib/registry.js');
|
165
|
+
QUnit.test('should pass ESLint', function(assert) {
|
166
|
+
assert.expect(1);
|
167
|
+
assert.ok(true, 'container/lib/registry.js should pass ESLint\n\n');
|
168
|
+
});
|
169
|
+
|
151
170
|
enifed('container/tests/container_test', ['ember-babel', 'ember-utils', 'ember-metal', 'ember/features', 'container', 'internal-test-helpers'], function (_emberBabel, _emberUtils, _emberMetal, _features, _container, _internalTestHelpers) {
|
152
171
|
'use strict';
|
153
172
|
|
@@ -625,9 +644,9 @@ enifed('container/tests/container_test', ['ember-babel', 'ember-utils', 'ember-m
|
|
625
644
|
QUnit.test('#factoryFor must supply a fullname', function (assert) {
|
626
645
|
var registry = new _container.Registry();
|
627
646
|
var container = registry.container();
|
628
|
-
|
647
|
+
expectAssertion(function () {
|
629
648
|
container.factoryFor('chad-bar');
|
630
|
-
}, /
|
649
|
+
}, /fullName must be a proper full name/);
|
631
650
|
});
|
632
651
|
|
633
652
|
QUnit.test('#factoryFor returns a factory manager', function (assert) {
|
@@ -951,7 +970,7 @@ enifed('container/tests/registry_test', ['container', 'internal-test-helpers', '
|
|
951
970
|
|
952
971
|
registry.register('controller:post', PostController);
|
953
972
|
|
954
|
-
|
973
|
+
expectAssertion(function () {
|
955
974
|
registry.typeInjection('controller', 'injected', 'controller:post');
|
956
975
|
}, /Cannot inject a 'controller:post' on other controller\(s\)\./);
|
957
976
|
});
|
@@ -1012,26 +1031,6 @@ enifed('container/tests/registry_test', ['container', 'internal-test-helpers', '
|
|
1012
1031
|
equal(isPresent, true, 'Normalizes the name when checking if the factory or instance is present');
|
1013
1032
|
});
|
1014
1033
|
|
1015
|
-
QUnit.test('validateFullName throws an error if name is incorrect', function () {
|
1016
|
-
expect(2);
|
1017
|
-
|
1018
|
-
var registry = new _container.Registry();
|
1019
|
-
var PostController = (0, _internalTestHelpers.factory)();
|
1020
|
-
|
1021
|
-
registry.normalize = function (fullName) {
|
1022
|
-
return 'controller:post';
|
1023
|
-
};
|
1024
|
-
|
1025
|
-
registry.register('controller:post', PostController);
|
1026
|
-
throws(function () {
|
1027
|
-
registry.validateFullName('post');
|
1028
|
-
}, /TypeError: Invalid Fullname, expected: 'type:name' got: post/);
|
1029
|
-
|
1030
|
-
throws(function () {
|
1031
|
-
registry.validateFullName('route:http://foo.bar.com/baz');
|
1032
|
-
}, /TypeError: Invalid Fullname, expected: 'type:name' got: route:http:\/\/foo.bar.com\/baz/);
|
1033
|
-
});
|
1034
|
-
|
1035
1034
|
QUnit.test('The registry normalizes names when injecting', function () {
|
1036
1035
|
var registry = new _container.Registry();
|
1037
1036
|
var PostController = (0, _internalTestHelpers.factory)();
|
@@ -1075,7 +1074,7 @@ enifed('container/tests/registry_test', ['container', 'internal-test-helpers', '
|
|
1075
1074
|
registry.register('controller:apple', FirstApple);
|
1076
1075
|
strictEqual(registry.resolve('controller:apple'), FirstApple);
|
1077
1076
|
|
1078
|
-
|
1077
|
+
expectAssertion(function () {
|
1079
1078
|
registry.register('controller:apple', SecondApple);
|
1080
1079
|
}, /Cannot re-register: 'controller:apple', as it has already been resolved\./);
|
1081
1080
|
|
@@ -1687,52 +1686,58 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
1687
1686
|
assert.ok(true, 'descriptor.js should pass ESLint\n\n');
|
1688
1687
|
});
|
1689
1688
|
|
1690
|
-
QUnit.module('ESLint | ember-application/index.js');
|
1689
|
+
QUnit.module('ESLint | ember-application/lib/index.js');
|
1690
|
+
QUnit.test('should pass ESLint', function(assert) {
|
1691
|
+
assert.expect(1);
|
1692
|
+
assert.ok(true, 'ember-application/lib/index.js should pass ESLint\n\n');
|
1693
|
+
});
|
1694
|
+
|
1695
|
+
QUnit.module('ESLint | ember-application/lib/initializers/dom-templates.js');
|
1691
1696
|
QUnit.test('should pass ESLint', function(assert) {
|
1692
1697
|
assert.expect(1);
|
1693
|
-
assert.ok(true, 'ember-application/
|
1698
|
+
assert.ok(true, 'ember-application/lib/initializers/dom-templates.js should pass ESLint\n\n');
|
1694
1699
|
});
|
1695
1700
|
|
1696
|
-
QUnit.module('ESLint | ember-application/
|
1701
|
+
QUnit.module('ESLint | ember-application/lib/system/application-instance.js');
|
1697
1702
|
QUnit.test('should pass ESLint', function(assert) {
|
1698
1703
|
assert.expect(1);
|
1699
|
-
assert.ok(true, 'ember-application/
|
1704
|
+
assert.ok(true, 'ember-application/lib/system/application-instance.js should pass ESLint\n\n');
|
1700
1705
|
});
|
1701
1706
|
|
1702
|
-
QUnit.module('ESLint | ember-application/system/application
|
1707
|
+
QUnit.module('ESLint | ember-application/lib/system/application.js');
|
1703
1708
|
QUnit.test('should pass ESLint', function(assert) {
|
1704
1709
|
assert.expect(1);
|
1705
|
-
assert.ok(true, 'ember-application/system/application
|
1710
|
+
assert.ok(true, 'ember-application/lib/system/application.js should pass ESLint\n\n');
|
1706
1711
|
});
|
1707
1712
|
|
1708
|
-
QUnit.module('ESLint | ember-application/system/
|
1713
|
+
QUnit.module('ESLint | ember-application/lib/system/engine-instance.js');
|
1709
1714
|
QUnit.test('should pass ESLint', function(assert) {
|
1710
1715
|
assert.expect(1);
|
1711
|
-
assert.ok(true, 'ember-application/system/
|
1716
|
+
assert.ok(true, 'ember-application/lib/system/engine-instance.js should pass ESLint\n\n');
|
1712
1717
|
});
|
1713
1718
|
|
1714
|
-
QUnit.module('ESLint | ember-application/system/engine-
|
1719
|
+
QUnit.module('ESLint | ember-application/lib/system/engine-parent.js');
|
1715
1720
|
QUnit.test('should pass ESLint', function(assert) {
|
1716
1721
|
assert.expect(1);
|
1717
|
-
assert.ok(true, 'ember-application/system/engine-
|
1722
|
+
assert.ok(true, 'ember-application/lib/system/engine-parent.js should pass ESLint\n\n');
|
1718
1723
|
});
|
1719
1724
|
|
1720
|
-
QUnit.module('ESLint | ember-application/system/engine
|
1725
|
+
QUnit.module('ESLint | ember-application/lib/system/engine.js');
|
1721
1726
|
QUnit.test('should pass ESLint', function(assert) {
|
1722
1727
|
assert.expect(1);
|
1723
|
-
assert.ok(true, 'ember-application/system/engine
|
1728
|
+
assert.ok(true, 'ember-application/lib/system/engine.js should pass ESLint\n\n');
|
1724
1729
|
});
|
1725
1730
|
|
1726
|
-
QUnit.module('ESLint | ember-application/system/
|
1731
|
+
QUnit.module('ESLint | ember-application/lib/system/resolver.js');
|
1727
1732
|
QUnit.test('should pass ESLint', function(assert) {
|
1728
1733
|
assert.expect(1);
|
1729
|
-
assert.ok(true, 'ember-application/system/
|
1734
|
+
assert.ok(true, 'ember-application/lib/system/resolver.js should pass ESLint\n\n');
|
1730
1735
|
});
|
1731
1736
|
|
1732
|
-
QUnit.module('ESLint | ember-application/
|
1737
|
+
QUnit.module('ESLint | ember-application/lib/utils/validate-type.js');
|
1733
1738
|
QUnit.test('should pass ESLint', function(assert) {
|
1734
1739
|
assert.expect(1);
|
1735
|
-
assert.ok(true, 'ember-application/
|
1740
|
+
assert.ok(true, 'ember-application/lib/utils/validate-type.js should pass ESLint\n\n');
|
1736
1741
|
});
|
1737
1742
|
|
1738
1743
|
enifed('ember-application/tests/system/application_instance_test', ['ember-babel', 'ember-application/system/engine', 'ember-application/system/application', 'ember-application/system/application-instance', 'ember-metal', 'ember-views', 'container', 'internal-test-helpers', 'ember-runtime'], function (_emberBabel, _engine, _application, _applicationInstance, _emberMetal, _emberViews, _container, _internalTestHelpers, _emberRuntime) {
|
@@ -2620,30 +2625,30 @@ enifed('ember-application/tests/system/dependency_injection/default_resolver_tes
|
|
2620
2625
|
_class.prototype['@test the default resolver throws an error if the fullName to resolve is invalid'] = function (assert) {
|
2621
2626
|
var _this3 = this;
|
2622
2627
|
|
2623
|
-
|
2628
|
+
expectAssertion(function () {
|
2624
2629
|
_this3.applicationInstance.resolveRegistration(undefined);
|
2625
|
-
},
|
2626
|
-
|
2630
|
+
}, /fullName must be a proper full name/);
|
2631
|
+
expectAssertion(function () {
|
2627
2632
|
_this3.applicationInstance.resolveRegistration(null);
|
2628
|
-
},
|
2629
|
-
|
2633
|
+
}, /fullName must be a proper full name/);
|
2634
|
+
expectAssertion(function () {
|
2630
2635
|
_this3.applicationInstance.resolveRegistration('');
|
2631
|
-
},
|
2632
|
-
|
2636
|
+
}, /fullName must be a proper full name/);
|
2637
|
+
expectAssertion(function () {
|
2633
2638
|
_this3.applicationInstance.resolveRegistration('');
|
2634
|
-
},
|
2635
|
-
|
2639
|
+
}, /fullName must be a proper full name/);
|
2640
|
+
expectAssertion(function () {
|
2636
2641
|
_this3.applicationInstance.resolveRegistration(':');
|
2637
|
-
},
|
2638
|
-
|
2642
|
+
}, /fullName must be a proper full name/);
|
2643
|
+
expectAssertion(function () {
|
2639
2644
|
_this3.applicationInstance.resolveRegistration('model');
|
2640
|
-
},
|
2641
|
-
|
2645
|
+
}, /fullName must be a proper full name/);
|
2646
|
+
expectAssertion(function () {
|
2642
2647
|
_this3.applicationInstance.resolveRegistration('model:');
|
2643
|
-
},
|
2644
|
-
|
2648
|
+
}, /fullName must be a proper full name/);
|
2649
|
+
expectAssertion(function () {
|
2645
2650
|
_this3.applicationInstance.resolveRegistration(':type');
|
2646
|
-
},
|
2651
|
+
}, /fullName must be a proper full name/);
|
2647
2652
|
};
|
2648
2653
|
|
2649
2654
|
_class.prototype['@test lookup description'] = function (assert) {
|
@@ -6084,12 +6089,6 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
6084
6089
|
assert.ok(true, 'ember-application/tests/test-helpers/registry-check.js should pass ESLint\n\n');
|
6085
6090
|
});
|
6086
6091
|
|
6087
|
-
QUnit.module('ESLint | ember-application/utils/validate-type.js');
|
6088
|
-
QUnit.test('should pass ESLint', function(assert) {
|
6089
|
-
assert.expect(1);
|
6090
|
-
assert.ok(true, 'ember-application/utils/validate-type.js should pass ESLint\n\n');
|
6091
|
-
});
|
6092
|
-
|
6093
6092
|
enifed('ember-babel', ['exports'], function (exports) {
|
6094
6093
|
'use strict';
|
6095
6094
|
|
@@ -6169,6 +6168,12 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
6169
6168
|
assert.ok(true, 'ember-console.js should pass ESLint\n\n');
|
6170
6169
|
});
|
6171
6170
|
|
6171
|
+
QUnit.module('ESLint | ember-console/lib/index.js');
|
6172
|
+
QUnit.test('should pass ESLint', function(assert) {
|
6173
|
+
assert.expect(1);
|
6174
|
+
assert.ok(true, 'ember-console/lib/index.js should pass ESLint\n\n');
|
6175
|
+
});
|
6176
|
+
|
6172
6177
|
QUnit.module('ESLint | ember-debug/deprecate.js');
|
6173
6178
|
QUnit.test('should pass ESLint', function(assert) {
|
6174
6179
|
assert.expect(1);
|
@@ -6199,6 +6204,48 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
6199
6204
|
assert.ok(true, 'ember-debug/index.js should pass ESLint\n\n');
|
6200
6205
|
});
|
6201
6206
|
|
6207
|
+
QUnit.module('ESLint | ember-debug/lib/deprecate.js');
|
6208
|
+
QUnit.test('should pass ESLint', function(assert) {
|
6209
|
+
assert.expect(1);
|
6210
|
+
assert.ok(true, 'ember-debug/lib/deprecate.js should pass ESLint\n\n');
|
6211
|
+
});
|
6212
|
+
|
6213
|
+
QUnit.module('ESLint | ember-debug/lib/error.js');
|
6214
|
+
QUnit.test('should pass ESLint', function(assert) {
|
6215
|
+
assert.expect(1);
|
6216
|
+
assert.ok(true, 'ember-debug/lib/error.js should pass ESLint\n\n');
|
6217
|
+
});
|
6218
|
+
|
6219
|
+
QUnit.module('ESLint | ember-debug/lib/features.js');
|
6220
|
+
QUnit.test('should pass ESLint', function(assert) {
|
6221
|
+
assert.expect(1);
|
6222
|
+
assert.ok(true, 'ember-debug/lib/features.js should pass ESLint\n\n');
|
6223
|
+
});
|
6224
|
+
|
6225
|
+
QUnit.module('ESLint | ember-debug/lib/handlers.js');
|
6226
|
+
QUnit.test('should pass ESLint', function(assert) {
|
6227
|
+
assert.expect(1);
|
6228
|
+
assert.ok(true, 'ember-debug/lib/handlers.js should pass ESLint\n\n');
|
6229
|
+
});
|
6230
|
+
|
6231
|
+
QUnit.module('ESLint | ember-debug/lib/index.js');
|
6232
|
+
QUnit.test('should pass ESLint', function(assert) {
|
6233
|
+
assert.expect(1);
|
6234
|
+
assert.ok(true, 'ember-debug/lib/index.js should pass ESLint\n\n');
|
6235
|
+
});
|
6236
|
+
|
6237
|
+
QUnit.module('ESLint | ember-debug/lib/testing.js');
|
6238
|
+
QUnit.test('should pass ESLint', function(assert) {
|
6239
|
+
assert.expect(1);
|
6240
|
+
assert.ok(true, 'ember-debug/lib/testing.js should pass ESLint\n\n');
|
6241
|
+
});
|
6242
|
+
|
6243
|
+
QUnit.module('ESLint | ember-debug/lib/warn.js');
|
6244
|
+
QUnit.test('should pass ESLint', function(assert) {
|
6245
|
+
assert.expect(1);
|
6246
|
+
assert.ok(true, 'ember-debug/lib/warn.js should pass ESLint\n\n');
|
6247
|
+
});
|
6248
|
+
|
6202
6249
|
QUnit.module('ESLint | ember-debug/testing.js');
|
6203
6250
|
QUnit.test('should pass ESLint', function(assert) {
|
6204
6251
|
assert.expect(1);
|
@@ -7558,22 +7605,40 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
7558
7605
|
assert.ok(true, 'ember-environment.js should pass ESLint\n\n');
|
7559
7606
|
});
|
7560
7607
|
|
7561
|
-
QUnit.module('ESLint | ember-
|
7608
|
+
QUnit.module('ESLint | ember-environment/lib/global.js');
|
7562
7609
|
QUnit.test('should pass ESLint', function(assert) {
|
7563
7610
|
assert.expect(1);
|
7564
|
-
assert.ok(true, 'ember-
|
7611
|
+
assert.ok(true, 'ember-environment/lib/global.js should pass ESLint\n\n');
|
7565
7612
|
});
|
7566
7613
|
|
7567
|
-
QUnit.module('ESLint | ember-
|
7614
|
+
QUnit.module('ESLint | ember-environment/lib/index.js');
|
7568
7615
|
QUnit.test('should pass ESLint', function(assert) {
|
7569
7616
|
assert.expect(1);
|
7570
|
-
assert.ok(true, 'ember-
|
7617
|
+
assert.ok(true, 'ember-environment/lib/index.js should pass ESLint\n\n');
|
7571
7618
|
});
|
7572
7619
|
|
7573
|
-
QUnit.module('ESLint | ember-
|
7620
|
+
QUnit.module('ESLint | ember-environment/lib/utils.js');
|
7574
7621
|
QUnit.test('should pass ESLint', function(assert) {
|
7575
7622
|
assert.expect(1);
|
7576
|
-
assert.ok(true, 'ember-
|
7623
|
+
assert.ok(true, 'ember-environment/lib/utils.js should pass ESLint\n\n');
|
7624
|
+
});
|
7625
|
+
|
7626
|
+
QUnit.module('ESLint | ember-extension-support/lib/container_debug_adapter.js');
|
7627
|
+
QUnit.test('should pass ESLint', function(assert) {
|
7628
|
+
assert.expect(1);
|
7629
|
+
assert.ok(true, 'ember-extension-support/lib/container_debug_adapter.js should pass ESLint\n\n');
|
7630
|
+
});
|
7631
|
+
|
7632
|
+
QUnit.module('ESLint | ember-extension-support/lib/data_adapter.js');
|
7633
|
+
QUnit.test('should pass ESLint', function(assert) {
|
7634
|
+
assert.expect(1);
|
7635
|
+
assert.ok(true, 'ember-extension-support/lib/data_adapter.js should pass ESLint\n\n');
|
7636
|
+
});
|
7637
|
+
|
7638
|
+
QUnit.module('ESLint | ember-extension-support/lib/index.js');
|
7639
|
+
QUnit.test('should pass ESLint', function(assert) {
|
7640
|
+
assert.expect(1);
|
7641
|
+
assert.ok(true, 'ember-extension-support/lib/index.js should pass ESLint\n\n');
|
7577
7642
|
});
|
7578
7643
|
|
7579
7644
|
enifed('ember-extension-support/tests/container_debug_adapter_test', ['ember-babel', 'internal-test-helpers', 'ember-utils', 'ember-metal', 'ember-runtime', 'ember-extension-support/index'], function (_emberBabel, _internalTestHelpers, _emberUtils, _emberMetal, _emberRuntime) {
|
@@ -7925,312 +7990,6 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
7925
7990
|
assert.ok(true, 'ember-extension-support/tests/data_adapter_test.js should pass ESLint\n\n');
|
7926
7991
|
});
|
7927
7992
|
|
7928
|
-
QUnit.module('ESLint | ember-glimmer/component-managers/abstract.js');
|
7929
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7930
|
-
assert.expect(1);
|
7931
|
-
assert.ok(true, 'ember-glimmer/component-managers/abstract.js should pass ESLint\n\n');
|
7932
|
-
});
|
7933
|
-
|
7934
|
-
QUnit.module('ESLint | ember-glimmer/component-managers/curly.js');
|
7935
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7936
|
-
assert.expect(1);
|
7937
|
-
assert.ok(true, 'ember-glimmer/component-managers/curly.js should pass ESLint\n\n');
|
7938
|
-
});
|
7939
|
-
|
7940
|
-
QUnit.module('ESLint | ember-glimmer/component-managers/mount.js');
|
7941
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7942
|
-
assert.expect(1);
|
7943
|
-
assert.ok(true, 'ember-glimmer/component-managers/mount.js should pass ESLint\n\n');
|
7944
|
-
});
|
7945
|
-
|
7946
|
-
QUnit.module('ESLint | ember-glimmer/component-managers/outlet.js');
|
7947
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7948
|
-
assert.expect(1);
|
7949
|
-
assert.ok(true, 'ember-glimmer/component-managers/outlet.js should pass ESLint\n\n');
|
7950
|
-
});
|
7951
|
-
|
7952
|
-
QUnit.module('ESLint | ember-glimmer/component-managers/render.js');
|
7953
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7954
|
-
assert.expect(1);
|
7955
|
-
assert.ok(true, 'ember-glimmer/component-managers/render.js should pass ESLint\n\n');
|
7956
|
-
});
|
7957
|
-
|
7958
|
-
QUnit.module('ESLint | ember-glimmer/component-managers/root.js');
|
7959
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7960
|
-
assert.expect(1);
|
7961
|
-
assert.ok(true, 'ember-glimmer/component-managers/root.js should pass ESLint\n\n');
|
7962
|
-
});
|
7963
|
-
|
7964
|
-
QUnit.module('ESLint | ember-glimmer/component.js');
|
7965
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7966
|
-
assert.expect(1);
|
7967
|
-
assert.ok(true, 'ember-glimmer/component.js should pass ESLint\n\n');
|
7968
|
-
});
|
7969
|
-
|
7970
|
-
QUnit.module('ESLint | ember-glimmer/components/checkbox.js');
|
7971
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7972
|
-
assert.expect(1);
|
7973
|
-
assert.ok(true, 'ember-glimmer/components/checkbox.js should pass ESLint\n\n');
|
7974
|
-
});
|
7975
|
-
|
7976
|
-
QUnit.module('ESLint | ember-glimmer/components/link-to.js');
|
7977
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7978
|
-
assert.expect(1);
|
7979
|
-
assert.ok(true, 'ember-glimmer/components/link-to.js should pass ESLint\n\n');
|
7980
|
-
});
|
7981
|
-
|
7982
|
-
QUnit.module('ESLint | ember-glimmer/components/text_area.js');
|
7983
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7984
|
-
assert.expect(1);
|
7985
|
-
assert.ok(true, 'ember-glimmer/components/text_area.js should pass ESLint\n\n');
|
7986
|
-
});
|
7987
|
-
|
7988
|
-
QUnit.module('ESLint | ember-glimmer/components/text_field.js');
|
7989
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7990
|
-
assert.expect(1);
|
7991
|
-
assert.ok(true, 'ember-glimmer/components/text_field.js should pass ESLint\n\n');
|
7992
|
-
});
|
7993
|
-
|
7994
|
-
QUnit.module('ESLint | ember-glimmer/dom.js');
|
7995
|
-
QUnit.test('should pass ESLint', function(assert) {
|
7996
|
-
assert.expect(1);
|
7997
|
-
assert.ok(true, 'ember-glimmer/dom.js should pass ESLint\n\n');
|
7998
|
-
});
|
7999
|
-
|
8000
|
-
QUnit.module('ESLint | ember-glimmer/environment.js');
|
8001
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8002
|
-
assert.expect(1);
|
8003
|
-
assert.ok(true, 'ember-glimmer/environment.js should pass ESLint\n\n');
|
8004
|
-
});
|
8005
|
-
|
8006
|
-
QUnit.module('ESLint | ember-glimmer/helper.js');
|
8007
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8008
|
-
assert.expect(1);
|
8009
|
-
assert.ok(true, 'ember-glimmer/helper.js should pass ESLint\n\n');
|
8010
|
-
});
|
8011
|
-
|
8012
|
-
QUnit.module('ESLint | ember-glimmer/helpers/-class.js');
|
8013
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8014
|
-
assert.expect(1);
|
8015
|
-
assert.ok(true, 'ember-glimmer/helpers/-class.js should pass ESLint\n\n');
|
8016
|
-
});
|
8017
|
-
|
8018
|
-
QUnit.module('ESLint | ember-glimmer/helpers/-html-safe.js');
|
8019
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8020
|
-
assert.expect(1);
|
8021
|
-
assert.ok(true, 'ember-glimmer/helpers/-html-safe.js should pass ESLint\n\n');
|
8022
|
-
});
|
8023
|
-
|
8024
|
-
QUnit.module('ESLint | ember-glimmer/helpers/-input-type.js');
|
8025
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8026
|
-
assert.expect(1);
|
8027
|
-
assert.ok(true, 'ember-glimmer/helpers/-input-type.js should pass ESLint\n\n');
|
8028
|
-
});
|
8029
|
-
|
8030
|
-
QUnit.module('ESLint | ember-glimmer/helpers/-normalize-class.js');
|
8031
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8032
|
-
assert.expect(1);
|
8033
|
-
assert.ok(true, 'ember-glimmer/helpers/-normalize-class.js should pass ESLint\n\n');
|
8034
|
-
});
|
8035
|
-
|
8036
|
-
QUnit.module('ESLint | ember-glimmer/helpers/action.js');
|
8037
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8038
|
-
assert.expect(1);
|
8039
|
-
assert.ok(true, 'ember-glimmer/helpers/action.js should pass ESLint\n\n');
|
8040
|
-
});
|
8041
|
-
|
8042
|
-
QUnit.module('ESLint | ember-glimmer/helpers/component.js');
|
8043
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8044
|
-
assert.expect(1);
|
8045
|
-
assert.ok(true, 'ember-glimmer/helpers/component.js should pass ESLint\n\n');
|
8046
|
-
});
|
8047
|
-
|
8048
|
-
QUnit.module('ESLint | ember-glimmer/helpers/concat.js');
|
8049
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8050
|
-
assert.expect(1);
|
8051
|
-
assert.ok(true, 'ember-glimmer/helpers/concat.js should pass ESLint\n\n');
|
8052
|
-
});
|
8053
|
-
|
8054
|
-
QUnit.module('ESLint | ember-glimmer/helpers/each-in.js');
|
8055
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8056
|
-
assert.expect(1);
|
8057
|
-
assert.ok(true, 'ember-glimmer/helpers/each-in.js should pass ESLint\n\n');
|
8058
|
-
});
|
8059
|
-
|
8060
|
-
QUnit.module('ESLint | ember-glimmer/helpers/get.js');
|
8061
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8062
|
-
assert.expect(1);
|
8063
|
-
assert.ok(true, 'ember-glimmer/helpers/get.js should pass ESLint\n\n');
|
8064
|
-
});
|
8065
|
-
|
8066
|
-
QUnit.module('ESLint | ember-glimmer/helpers/hash.js');
|
8067
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8068
|
-
assert.expect(1);
|
8069
|
-
assert.ok(true, 'ember-glimmer/helpers/hash.js should pass ESLint\n\n');
|
8070
|
-
});
|
8071
|
-
|
8072
|
-
QUnit.module('ESLint | ember-glimmer/helpers/if-unless.js');
|
8073
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8074
|
-
assert.expect(1);
|
8075
|
-
assert.ok(true, 'ember-glimmer/helpers/if-unless.js should pass ESLint\n\n');
|
8076
|
-
});
|
8077
|
-
|
8078
|
-
QUnit.module('ESLint | ember-glimmer/helpers/loc.js');
|
8079
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8080
|
-
assert.expect(1);
|
8081
|
-
assert.ok(true, 'ember-glimmer/helpers/loc.js should pass ESLint\n\n');
|
8082
|
-
});
|
8083
|
-
|
8084
|
-
QUnit.module('ESLint | ember-glimmer/helpers/log.js');
|
8085
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8086
|
-
assert.expect(1);
|
8087
|
-
assert.ok(true, 'ember-glimmer/helpers/log.js should pass ESLint\n\n');
|
8088
|
-
});
|
8089
|
-
|
8090
|
-
QUnit.module('ESLint | ember-glimmer/helpers/mut.js');
|
8091
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8092
|
-
assert.expect(1);
|
8093
|
-
assert.ok(true, 'ember-glimmer/helpers/mut.js should pass ESLint\n\n');
|
8094
|
-
});
|
8095
|
-
|
8096
|
-
QUnit.module('ESLint | ember-glimmer/helpers/query-param.js');
|
8097
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8098
|
-
assert.expect(1);
|
8099
|
-
assert.ok(true, 'ember-glimmer/helpers/query-param.js should pass ESLint\n\n');
|
8100
|
-
});
|
8101
|
-
|
8102
|
-
QUnit.module('ESLint | ember-glimmer/helpers/readonly.js');
|
8103
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8104
|
-
assert.expect(1);
|
8105
|
-
assert.ok(true, 'ember-glimmer/helpers/readonly.js should pass ESLint\n\n');
|
8106
|
-
});
|
8107
|
-
|
8108
|
-
QUnit.module('ESLint | ember-glimmer/helpers/unbound.js');
|
8109
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8110
|
-
assert.expect(1);
|
8111
|
-
assert.ok(true, 'ember-glimmer/helpers/unbound.js should pass ESLint\n\n');
|
8112
|
-
});
|
8113
|
-
|
8114
|
-
QUnit.module('ESLint | ember-glimmer/index.js');
|
8115
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8116
|
-
assert.expect(1);
|
8117
|
-
assert.ok(true, 'ember-glimmer/index.js should pass ESLint\n\n');
|
8118
|
-
});
|
8119
|
-
|
8120
|
-
QUnit.module('ESLint | ember-glimmer/modifiers/action.js');
|
8121
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8122
|
-
assert.expect(1);
|
8123
|
-
assert.ok(true, 'ember-glimmer/modifiers/action.js should pass ESLint\n\n');
|
8124
|
-
});
|
8125
|
-
|
8126
|
-
QUnit.module('ESLint | ember-glimmer/protocol-for-url.js');
|
8127
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8128
|
-
assert.expect(1);
|
8129
|
-
assert.ok(true, 'ember-glimmer/protocol-for-url.js should pass ESLint\n\n');
|
8130
|
-
});
|
8131
|
-
|
8132
|
-
QUnit.module('ESLint | ember-glimmer/renderer.js');
|
8133
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8134
|
-
assert.expect(1);
|
8135
|
-
assert.ok(true, 'ember-glimmer/renderer.js should pass ESLint\n\n');
|
8136
|
-
});
|
8137
|
-
|
8138
|
-
QUnit.module('ESLint | ember-glimmer/setup-registry.js');
|
8139
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8140
|
-
assert.expect(1);
|
8141
|
-
assert.ok(true, 'ember-glimmer/setup-registry.js should pass ESLint\n\n');
|
8142
|
-
});
|
8143
|
-
|
8144
|
-
QUnit.module('ESLint | ember-glimmer/syntax.js');
|
8145
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8146
|
-
assert.expect(1);
|
8147
|
-
assert.ok(true, 'ember-glimmer/syntax.js should pass ESLint\n\n');
|
8148
|
-
});
|
8149
|
-
|
8150
|
-
QUnit.module('ESLint | ember-glimmer/syntax/-text-area.js');
|
8151
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8152
|
-
assert.expect(1);
|
8153
|
-
assert.ok(true, 'ember-glimmer/syntax/-text-area.js should pass ESLint\n\n');
|
8154
|
-
});
|
8155
|
-
|
8156
|
-
QUnit.module('ESLint | ember-glimmer/syntax/dynamic-component.js');
|
8157
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8158
|
-
assert.expect(1);
|
8159
|
-
assert.ok(true, 'ember-glimmer/syntax/dynamic-component.js should pass ESLint\n\n');
|
8160
|
-
});
|
8161
|
-
|
8162
|
-
QUnit.module('ESLint | ember-glimmer/syntax/input.js');
|
8163
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8164
|
-
assert.expect(1);
|
8165
|
-
assert.ok(true, 'ember-glimmer/syntax/input.js should pass ESLint\n\n');
|
8166
|
-
});
|
8167
|
-
|
8168
|
-
QUnit.module('ESLint | ember-glimmer/syntax/mount.js');
|
8169
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8170
|
-
assert.expect(1);
|
8171
|
-
assert.ok(true, 'ember-glimmer/syntax/mount.js should pass ESLint\n\n');
|
8172
|
-
});
|
8173
|
-
|
8174
|
-
QUnit.module('ESLint | ember-glimmer/syntax/outlet.js');
|
8175
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8176
|
-
assert.expect(1);
|
8177
|
-
assert.ok(true, 'ember-glimmer/syntax/outlet.js should pass ESLint\n\n');
|
8178
|
-
});
|
8179
|
-
|
8180
|
-
QUnit.module('ESLint | ember-glimmer/syntax/render.js');
|
8181
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8182
|
-
assert.expect(1);
|
8183
|
-
assert.ok(true, 'ember-glimmer/syntax/render.js should pass ESLint\n\n');
|
8184
|
-
});
|
8185
|
-
|
8186
|
-
QUnit.module('ESLint | ember-glimmer/syntax/utils.js');
|
8187
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8188
|
-
assert.expect(1);
|
8189
|
-
assert.ok(true, 'ember-glimmer/syntax/utils.js should pass ESLint\n\n');
|
8190
|
-
});
|
8191
|
-
|
8192
|
-
QUnit.module('ESLint | ember-glimmer/template.js');
|
8193
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8194
|
-
assert.expect(1);
|
8195
|
-
assert.ok(true, 'ember-glimmer/template.js should pass ESLint\n\n');
|
8196
|
-
});
|
8197
|
-
|
8198
|
-
QUnit.module('ESLint | ember-glimmer/template_registry.js');
|
8199
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8200
|
-
assert.expect(1);
|
8201
|
-
assert.ok(true, 'ember-glimmer/template_registry.js should pass ESLint\n\n');
|
8202
|
-
});
|
8203
|
-
|
8204
|
-
QUnit.module('ESLint | ember-glimmer/templates/component.js');
|
8205
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8206
|
-
assert.expect(1);
|
8207
|
-
assert.ok(true, 'ember-glimmer/templates/component.js should pass ESLint\n\n');
|
8208
|
-
});
|
8209
|
-
|
8210
|
-
QUnit.module('ESLint | ember-glimmer/templates/empty.js');
|
8211
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8212
|
-
assert.expect(1);
|
8213
|
-
assert.ok(true, 'ember-glimmer/templates/empty.js should pass ESLint\n\n');
|
8214
|
-
});
|
8215
|
-
|
8216
|
-
QUnit.module('ESLint | ember-glimmer/templates/link-to.js');
|
8217
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8218
|
-
assert.expect(1);
|
8219
|
-
assert.ok(true, 'ember-glimmer/templates/link-to.js should pass ESLint\n\n');
|
8220
|
-
});
|
8221
|
-
|
8222
|
-
QUnit.module('ESLint | ember-glimmer/templates/outlet.js');
|
8223
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8224
|
-
assert.expect(1);
|
8225
|
-
assert.ok(true, 'ember-glimmer/templates/outlet.js should pass ESLint\n\n');
|
8226
|
-
});
|
8227
|
-
|
8228
|
-
QUnit.module('ESLint | ember-glimmer/templates/root.js');
|
8229
|
-
QUnit.test('should pass ESLint', function(assert) {
|
8230
|
-
assert.expect(1);
|
8231
|
-
assert.ok(true, 'ember-glimmer/templates/root.js should pass ESLint\n\n');
|
8232
|
-
});
|
8233
|
-
|
8234
7993
|
enifed('ember-glimmer/tests/integration/application/actions-test', ['ember-babel', 'ember-runtime', 'ember-glimmer/tests/utils/test-case', 'ember-glimmer/tests/utils/helpers'], function (_emberBabel, _emberRuntime, _testCase, _helpers) {
|
8235
7994
|
'use strict';
|
8236
7995
|
|
@@ -17626,174 +17385,6 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
17626
17385
|
assert.ok(true, 'ember-glimmer/tests/integration/components/dynamic-components-test.js should pass ESLint\n\n');
|
17627
17386
|
});
|
17628
17387
|
|
17629
|
-
enifed('ember-glimmer/tests/integration/components/error-handling-test', ['ember-babel', 'ember-metal', 'ember-glimmer/tests/utils/helpers', 'ember-glimmer/tests/utils/test-case'], function (_emberBabel, _emberMetal, _helpers, _testCase) {
|
17630
|
-
'use strict';
|
17631
|
-
|
17632
|
-
(0, _testCase.moduleFor)('Errors thrown during render', function (_RenderingTest) {
|
17633
|
-
(0, _emberBabel.inherits)(_class, _RenderingTest);
|
17634
|
-
|
17635
|
-
function _class() {
|
17636
|
-
(0, _emberBabel.classCallCheck)(this, _class);
|
17637
|
-
return (0, _emberBabel.possibleConstructorReturn)(this, _RenderingTest.apply(this, arguments));
|
17638
|
-
}
|
17639
|
-
|
17640
|
-
_class.prototype['@test it can recover resets the transaction when an error is thrown during initial render'] = function testItCanRecoverResetsTheTransactionWhenAnErrorIsThrownDuringInitialRender(assert) {
|
17641
|
-
var _this2 = this;
|
17642
|
-
|
17643
|
-
var shouldThrow = true;
|
17644
|
-
var FooBarComponent = _helpers.Component.extend({
|
17645
|
-
init: function () {
|
17646
|
-
this._super.apply(this, arguments);
|
17647
|
-
if (shouldThrow) {
|
17648
|
-
throw new Error('silly mistake in init!');
|
17649
|
-
}
|
17650
|
-
}
|
17651
|
-
});
|
17652
|
-
|
17653
|
-
this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
|
17654
|
-
|
17655
|
-
assert.throws(function () {
|
17656
|
-
_this2.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
|
17657
|
-
}, /silly mistake in init/);
|
17658
|
-
|
17659
|
-
assert.equal(this.env.inTransaction, false, 'should not be in a transaction even though an error was thrown');
|
17660
|
-
|
17661
|
-
this.assertText('');
|
17662
|
-
|
17663
|
-
this.runTask(function () {
|
17664
|
-
return (0, _emberMetal.set)(_this2.context, 'switch', false);
|
17665
|
-
});
|
17666
|
-
|
17667
|
-
shouldThrow = false;
|
17668
|
-
|
17669
|
-
this.runTask(function () {
|
17670
|
-
return (0, _emberMetal.set)(_this2.context, 'switch', true);
|
17671
|
-
});
|
17672
|
-
|
17673
|
-
this.assertText('hello');
|
17674
|
-
};
|
17675
|
-
|
17676
|
-
_class.prototype['@test it can recover resets the transaction when an error is thrown during rerender'] = function testItCanRecoverResetsTheTransactionWhenAnErrorIsThrownDuringRerender(assert) {
|
17677
|
-
var _this3 = this;
|
17678
|
-
|
17679
|
-
var shouldThrow = false;
|
17680
|
-
var FooBarComponent = _helpers.Component.extend({
|
17681
|
-
init: function () {
|
17682
|
-
this._super.apply(this, arguments);
|
17683
|
-
if (shouldThrow) {
|
17684
|
-
throw new Error('silly mistake in init!');
|
17685
|
-
}
|
17686
|
-
}
|
17687
|
-
});
|
17688
|
-
|
17689
|
-
this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
|
17690
|
-
|
17691
|
-
this.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
|
17692
|
-
|
17693
|
-
this.assertText('hello');
|
17694
|
-
|
17695
|
-
this.runTask(function () {
|
17696
|
-
return (0, _emberMetal.set)(_this3.context, 'switch', false);
|
17697
|
-
});
|
17698
|
-
|
17699
|
-
shouldThrow = true;
|
17700
|
-
|
17701
|
-
assert.throws(function () {
|
17702
|
-
_this3.runTask(function () {
|
17703
|
-
return (0, _emberMetal.set)(_this3.context, 'switch', true);
|
17704
|
-
});
|
17705
|
-
}, /silly mistake in init/);
|
17706
|
-
|
17707
|
-
assert.equal(this.env.inTransaction, false, 'should not be in a transaction even though an error was thrown');
|
17708
|
-
|
17709
|
-
this.assertText('');
|
17710
|
-
|
17711
|
-
this.runTask(function () {
|
17712
|
-
return (0, _emberMetal.set)(_this3.context, 'switch', false);
|
17713
|
-
});
|
17714
|
-
shouldThrow = false;
|
17715
|
-
|
17716
|
-
this.runTask(function () {
|
17717
|
-
return (0, _emberMetal.set)(_this3.context, 'switch', true);
|
17718
|
-
});
|
17719
|
-
|
17720
|
-
this.assertText('hello');
|
17721
|
-
};
|
17722
|
-
|
17723
|
-
_class.prototype['@test it can recover resets the transaction when an error is thrown during didInsertElement'] = function testItCanRecoverResetsTheTransactionWhenAnErrorIsThrownDuringDidInsertElement(assert) {
|
17724
|
-
var _this4 = this;
|
17725
|
-
|
17726
|
-
var shouldThrow = true;
|
17727
|
-
var FooBarComponent = _helpers.Component.extend({
|
17728
|
-
didInsertElement: function () {
|
17729
|
-
this._super.apply(this, arguments);
|
17730
|
-
if (shouldThrow) {
|
17731
|
-
throw new Error('silly mistake!');
|
17732
|
-
}
|
17733
|
-
}
|
17734
|
-
});
|
17735
|
-
|
17736
|
-
this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
|
17737
|
-
|
17738
|
-
assert.throws(function () {
|
17739
|
-
_this4.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
|
17740
|
-
}, /silly mistake/);
|
17741
|
-
|
17742
|
-
assert.equal(this.env.inTransaction, false, 'should not be in a transaction even though an error was thrown');
|
17743
|
-
|
17744
|
-
this.assertText('hello');
|
17745
|
-
|
17746
|
-
this.runTask(function () {
|
17747
|
-
return (0, _emberMetal.set)(_this4.context, 'switch', false);
|
17748
|
-
});
|
17749
|
-
|
17750
|
-
this.assertText('');
|
17751
|
-
};
|
17752
|
-
|
17753
|
-
_class.prototype['@test it can recover resets the transaction when an error is thrown during destroy'] = function testItCanRecoverResetsTheTransactionWhenAnErrorIsThrownDuringDestroy(assert) {
|
17754
|
-
var _this5 = this;
|
17755
|
-
|
17756
|
-
var shouldThrow = true;
|
17757
|
-
var FooBarComponent = _helpers.Component.extend({
|
17758
|
-
destroy: function () {
|
17759
|
-
this._super.apply(this, arguments);
|
17760
|
-
if (shouldThrow) {
|
17761
|
-
throw new Error('silly mistake!');
|
17762
|
-
}
|
17763
|
-
}
|
17764
|
-
});
|
17765
|
-
|
17766
|
-
this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
|
17767
|
-
|
17768
|
-
this.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
|
17769
|
-
|
17770
|
-
this.assertText('hello');
|
17771
|
-
|
17772
|
-
assert.throws(function () {
|
17773
|
-
_this5.runTask(function () {
|
17774
|
-
return (0, _emberMetal.set)(_this5.context, 'switch', false);
|
17775
|
-
});
|
17776
|
-
}, /silly mistake/);
|
17777
|
-
|
17778
|
-
this.assertText('');
|
17779
|
-
|
17780
|
-
shouldThrow = false;
|
17781
|
-
this.runTask(function () {
|
17782
|
-
return (0, _emberMetal.set)(_this5.context, 'switch', true);
|
17783
|
-
});
|
17784
|
-
|
17785
|
-
this.assertText('hello');
|
17786
|
-
};
|
17787
|
-
|
17788
|
-
return _class;
|
17789
|
-
}(_testCase.RenderingTest));
|
17790
|
-
});
|
17791
|
-
QUnit.module('ESLint | ember-glimmer/tests/integration/components/error-handling-test.js');
|
17792
|
-
QUnit.test('should pass ESLint', function(assert) {
|
17793
|
-
assert.expect(1);
|
17794
|
-
assert.ok(true, 'ember-glimmer/tests/integration/components/error-handling-test.js should pass ESLint\n\n');
|
17795
|
-
});
|
17796
|
-
|
17797
17388
|
enifed('ember-glimmer/tests/integration/components/fragment-components-test', ['ember-babel', 'ember-glimmer/tests/utils/test-case', 'ember-glimmer/tests/utils/abstract-test-case', 'ember-glimmer/tests/utils/helpers', 'ember-metal'], function (_emberBabel, _testCase, _abstractTestCase, _helpers, _emberMetal) {
|
17798
17389
|
'use strict';
|
17799
17390
|
|
@@ -23128,6 +22719,14 @@ enifed('ember-glimmer/tests/integration/custom-component-manager-test', ['ember-
|
|
23128
22719
|
return env.getCompiledBlock(TestLayoutCompiler, definition.template);
|
23129
22720
|
};
|
23130
22721
|
|
22722
|
+
TestComponentManager.prototype.getDestructor = function getDestructor(component) {
|
22723
|
+
return component;
|
22724
|
+
};
|
22725
|
+
|
22726
|
+
TestComponentManager.prototype.getSelf = function getSelf() {
|
22727
|
+
return null;
|
22728
|
+
};
|
22729
|
+
|
23131
22730
|
return TestComponentManager;
|
23132
22731
|
}(_emberGlimmer.AbstractComponentManager);
|
23133
22732
|
|
@@ -29610,6 +29209,16 @@ enifed('ember-glimmer/tests/integration/helpers/loc-test', ['ember-babel', 'embe
|
|
29610
29209
|
this.assertText('Hallo Freund - Hallo, Mr. Pitkin', 'the bound value is correct after replacement');
|
29611
29210
|
};
|
29612
29211
|
|
29212
|
+
_class.prototype['@test it can be overriden'] = function testItCanBeOverriden() {
|
29213
|
+
this.registerHelper('loc', function () {
|
29214
|
+
return 'Yup';
|
29215
|
+
});
|
29216
|
+
this.render('{{loc greeting}}', {
|
29217
|
+
greeting: 'Hello Friend'
|
29218
|
+
});
|
29219
|
+
this.assertText('Yup', 'the localized string is correct');
|
29220
|
+
};
|
29221
|
+
|
29613
29222
|
return _class;
|
29614
29223
|
}(_testCase.RenderingTest));
|
29615
29224
|
});
|
@@ -33406,7 +33015,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33406
33015
|
outlet: 'main',
|
33407
33016
|
name: 'application',
|
33408
33017
|
controller: undefined,
|
33409
|
-
ViewClass: undefined,
|
33410
33018
|
template: undefined
|
33411
33019
|
},
|
33412
33020
|
|
@@ -33432,7 +33040,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33432
33040
|
outlet: 'main',
|
33433
33041
|
name: 'application',
|
33434
33042
|
controller: undefined,
|
33435
|
-
ViewClass: undefined,
|
33436
33043
|
template: undefined
|
33437
33044
|
},
|
33438
33045
|
|
@@ -33455,7 +33062,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33455
33062
|
outlet: 'main',
|
33456
33063
|
name: 'application',
|
33457
33064
|
controller: {},
|
33458
|
-
ViewClass: undefined,
|
33459
33065
|
template: this.owner.lookup('template:application')
|
33460
33066
|
},
|
33461
33067
|
outlets: Object.create(null)
|
@@ -33477,7 +33083,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33477
33083
|
outlet: 'main',
|
33478
33084
|
name: 'index',
|
33479
33085
|
controller: {},
|
33480
|
-
ViewClass: undefined,
|
33481
33086
|
template: this.owner.lookup('template:index')
|
33482
33087
|
},
|
33483
33088
|
outlets: Object.create(null)
|
@@ -33501,7 +33106,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33501
33106
|
outlet: 'main',
|
33502
33107
|
name: 'application',
|
33503
33108
|
controller: {},
|
33504
|
-
ViewClass: undefined,
|
33505
33109
|
template: this.owner.lookup('template:application')
|
33506
33110
|
},
|
33507
33111
|
outlets: Object.create(null)
|
@@ -33525,7 +33129,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33525
33129
|
outlet: 'main',
|
33526
33130
|
name: 'index',
|
33527
33131
|
controller: {},
|
33528
|
-
ViewClass: undefined,
|
33529
33132
|
template: this.owner.lookup('template:index')
|
33530
33133
|
},
|
33531
33134
|
outlets: Object.create(null)
|
@@ -33549,7 +33152,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33549
33152
|
outlet: 'main',
|
33550
33153
|
name: 'application',
|
33551
33154
|
controller: {},
|
33552
|
-
ViewClass: undefined,
|
33553
33155
|
template: this.owner.lookup('template:application')
|
33554
33156
|
},
|
33555
33157
|
outlets: Object.create(null)
|
@@ -33573,7 +33175,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33573
33175
|
outlet: 'main',
|
33574
33176
|
name: 'special',
|
33575
33177
|
controller: {},
|
33576
|
-
ViewClass: undefined,
|
33577
33178
|
template: this.owner.lookup('template:special')
|
33578
33179
|
},
|
33579
33180
|
outlets: Object.create(null)
|
@@ -33597,7 +33198,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33597
33198
|
outlet: 'main',
|
33598
33199
|
name: 'application',
|
33599
33200
|
controller: {},
|
33600
|
-
ViewClass: undefined,
|
33601
33201
|
template: this.owner.lookup('template:application')
|
33602
33202
|
},
|
33603
33203
|
outlets: Object.create(null)
|
@@ -33621,7 +33221,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33621
33221
|
outlet: 'main',
|
33622
33222
|
name: 'special',
|
33623
33223
|
controller: {},
|
33624
|
-
ViewClass: undefined,
|
33625
33224
|
template: this.owner.lookup('template:special')
|
33626
33225
|
},
|
33627
33226
|
outlets: Object.create(null)
|
@@ -33646,7 +33245,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33646
33245
|
outlet: 'main',
|
33647
33246
|
name: 'application',
|
33648
33247
|
controller: controller,
|
33649
|
-
ViewClass: undefined,
|
33650
33248
|
template: this.owner.lookup('template:application')
|
33651
33249
|
},
|
33652
33250
|
outlets: Object.create(null)
|
@@ -33670,7 +33268,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33670
33268
|
outlet: 'main',
|
33671
33269
|
name: 'foo',
|
33672
33270
|
controller: {},
|
33673
|
-
ViewClass: undefined,
|
33674
33271
|
template: this.owner.lookup('template:foo')
|
33675
33272
|
},
|
33676
33273
|
outlets: Object.create(null)
|
@@ -33684,7 +33281,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33684
33281
|
outlet: 'main',
|
33685
33282
|
name: 'bar',
|
33686
33283
|
controller: {},
|
33687
|
-
ViewClass: undefined,
|
33688
33284
|
template: this.owner.lookup('template:bar')
|
33689
33285
|
},
|
33690
33286
|
outlets: Object.create(null)
|
@@ -33725,7 +33321,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33725
33321
|
outlet: 'main',
|
33726
33322
|
name: 'outer',
|
33727
33323
|
controller: {},
|
33728
|
-
ViewClass: undefined,
|
33729
33324
|
template: this.owner.lookup('template:outer')
|
33730
33325
|
},
|
33731
33326
|
outlets: {
|
@@ -33736,7 +33331,6 @@ enifed('ember-glimmer/tests/integration/outlet-test', ['ember-babel', 'ember-gli
|
|
33736
33331
|
outlet: 'main',
|
33737
33332
|
name: 'inner',
|
33738
33333
|
controller: {},
|
33739
|
-
ViewClass: undefined,
|
33740
33334
|
template: this.owner.lookup('template:inner')
|
33741
33335
|
},
|
33742
33336
|
outlets: Object.create(null)
|
@@ -34832,7 +34426,7 @@ enifed('ember-glimmer/tests/integration/syntax/each-test', ['ember-babel', 'embe
|
|
34832
34426
|
this.assertText('Hello Planet EarthGlobe World');
|
34833
34427
|
|
34834
34428
|
this.runTask(function () {
|
34835
|
-
return _this11.replace(2, 4, { text: 'my' });
|
34429
|
+
return _this11.replace(2, 4, [{ text: 'my' }]);
|
34836
34430
|
});
|
34837
34431
|
|
34838
34432
|
this.assertText('Hello my World');
|
@@ -35536,7 +35130,7 @@ enifed('ember-glimmer/tests/integration/syntax/each-test', ['ember-babel', 'embe
|
|
35536
35130
|
|
35537
35131
|
this.runTask(function () {
|
35538
35132
|
(0, _emberMetal.get)(_this37.context, 'first').pushObject('I');
|
35539
|
-
(0, _emberMetal.get)(_this37.context, 'ninth').replace(0, 1, 'K');
|
35133
|
+
(0, _emberMetal.get)(_this37.context, 'ninth').replace(0, 1, ['K']);
|
35540
35134
|
});
|
35541
35135
|
|
35542
35136
|
this.assertText('O-Limbo-D-K-D-Wrath-K-Wrath-Limbo-I-D-K-D-Wrath-K-Wrath-I-O');
|
@@ -35568,7 +35162,7 @@ enifed('ember-glimmer/tests/integration/syntax/each-test', ['ember-babel', 'embe
|
|
35568
35162
|
|
35569
35163
|
this.runTask(function () {
|
35570
35164
|
var name = (0, _emberMetal.get)(_this38.context, 'name');
|
35571
|
-
name.objectAt(0).replace(0, 1, 'lady');
|
35165
|
+
name.objectAt(0).replace(0, 1, ['lady']);
|
35572
35166
|
name.pushObject(['bird']);
|
35573
35167
|
});
|
35574
35168
|
|
@@ -36368,7 +35962,7 @@ enifed('ember-glimmer/tests/integration/syntax/with-test', ['ember-babel', 'embe
|
|
36368
35962
|
|
36369
35963
|
this.runTask(function () {
|
36370
35964
|
var array = (0, _emberMetal.get)(_this9.context, 'arrayThing');
|
36371
|
-
array.replace(0, 1, 'Goodbye');
|
35965
|
+
array.replace(0, 1, ['Goodbye']);
|
36372
35966
|
(0, _emberRuntime.removeAt)(array, 1);
|
36373
35967
|
array.insertAt(1, ', ');
|
36374
35968
|
array.pushObject('!');
|
@@ -38401,58 +37995,262 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
38401
37995
|
assert.ok(true, 'ember-glimmer/tests/utils/test-helpers.js should pass ESLint\n\n');
|
38402
37996
|
});
|
38403
37997
|
|
38404
|
-
QUnit.module('ESLint | ember-
|
37998
|
+
QUnit.module('ESLint | ember-metal/lib/alias.js');
|
38405
37999
|
QUnit.test('should pass ESLint', function(assert) {
|
38406
38000
|
assert.expect(1);
|
38407
|
-
assert.ok(true, 'ember-
|
38001
|
+
assert.ok(true, 'ember-metal/lib/alias.js should pass ESLint\n\n');
|
38408
38002
|
});
|
38409
38003
|
|
38410
|
-
QUnit.module('ESLint | ember-
|
38004
|
+
QUnit.module('ESLint | ember-metal/lib/binding.js');
|
38411
38005
|
QUnit.test('should pass ESLint', function(assert) {
|
38412
38006
|
assert.expect(1);
|
38413
|
-
assert.ok(true, 'ember-
|
38007
|
+
assert.ok(true, 'ember-metal/lib/binding.js should pass ESLint\n\n');
|
38414
38008
|
});
|
38415
38009
|
|
38416
|
-
QUnit.module('ESLint | ember-
|
38010
|
+
QUnit.module('ESLint | ember-metal/lib/cache.js');
|
38417
38011
|
QUnit.test('should pass ESLint', function(assert) {
|
38418
38012
|
assert.expect(1);
|
38419
|
-
assert.ok(true, 'ember-
|
38013
|
+
assert.ok(true, 'ember-metal/lib/cache.js should pass ESLint\n\n');
|
38420
38014
|
});
|
38421
38015
|
|
38422
|
-
QUnit.module('ESLint | ember-
|
38016
|
+
QUnit.module('ESLint | ember-metal/lib/chains.js');
|
38423
38017
|
QUnit.test('should pass ESLint', function(assert) {
|
38424
38018
|
assert.expect(1);
|
38425
|
-
assert.ok(true, 'ember-
|
38019
|
+
assert.ok(true, 'ember-metal/lib/chains.js should pass ESLint\n\n');
|
38426
38020
|
});
|
38427
38021
|
|
38428
|
-
QUnit.module('ESLint | ember-
|
38022
|
+
QUnit.module('ESLint | ember-metal/lib/computed.js');
|
38429
38023
|
QUnit.test('should pass ESLint', function(assert) {
|
38430
38024
|
assert.expect(1);
|
38431
|
-
assert.ok(true, 'ember-
|
38025
|
+
assert.ok(true, 'ember-metal/lib/computed.js should pass ESLint\n\n');
|
38432
38026
|
});
|
38433
38027
|
|
38434
|
-
QUnit.module('ESLint | ember-
|
38028
|
+
QUnit.module('ESLint | ember-metal/lib/core.js');
|
38435
38029
|
QUnit.test('should pass ESLint', function(assert) {
|
38436
38030
|
assert.expect(1);
|
38437
|
-
assert.ok(true, 'ember-
|
38031
|
+
assert.ok(true, 'ember-metal/lib/core.js should pass ESLint\n\n');
|
38438
38032
|
});
|
38439
38033
|
|
38440
|
-
QUnit.module('ESLint | ember-
|
38034
|
+
QUnit.module('ESLint | ember-metal/lib/dependent_keys.js');
|
38441
38035
|
QUnit.test('should pass ESLint', function(assert) {
|
38442
38036
|
assert.expect(1);
|
38443
|
-
assert.ok(true, 'ember-
|
38037
|
+
assert.ok(true, 'ember-metal/lib/dependent_keys.js should pass ESLint\n\n');
|
38444
38038
|
});
|
38445
38039
|
|
38446
|
-
QUnit.module('ESLint | ember-
|
38040
|
+
QUnit.module('ESLint | ember-metal/lib/deprecate_property.js');
|
38447
38041
|
QUnit.test('should pass ESLint', function(assert) {
|
38448
38042
|
assert.expect(1);
|
38449
|
-
assert.ok(true, 'ember-
|
38043
|
+
assert.ok(true, 'ember-metal/lib/deprecate_property.js should pass ESLint\n\n');
|
38450
38044
|
});
|
38451
38045
|
|
38452
|
-
QUnit.module('ESLint | ember-
|
38046
|
+
QUnit.module('ESLint | ember-metal/lib/descriptor.js');
|
38453
38047
|
QUnit.test('should pass ESLint', function(assert) {
|
38454
38048
|
assert.expect(1);
|
38455
|
-
assert.ok(true, 'ember-
|
38049
|
+
assert.ok(true, 'ember-metal/lib/descriptor.js should pass ESLint\n\n');
|
38050
|
+
});
|
38051
|
+
|
38052
|
+
QUnit.module('ESLint | ember-metal/lib/error_handler.js');
|
38053
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38054
|
+
assert.expect(1);
|
38055
|
+
assert.ok(true, 'ember-metal/lib/error_handler.js should pass ESLint\n\n');
|
38056
|
+
});
|
38057
|
+
|
38058
|
+
QUnit.module('ESLint | ember-metal/lib/events.js');
|
38059
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38060
|
+
assert.expect(1);
|
38061
|
+
assert.ok(true, 'ember-metal/lib/events.js should pass ESLint\n\n');
|
38062
|
+
});
|
38063
|
+
|
38064
|
+
QUnit.module('ESLint | ember-metal/lib/expand_properties.js');
|
38065
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38066
|
+
assert.expect(1);
|
38067
|
+
assert.ok(true, 'ember-metal/lib/expand_properties.js should pass ESLint\n\n');
|
38068
|
+
});
|
38069
|
+
|
38070
|
+
QUnit.module('ESLint | ember-metal/lib/get_properties.js');
|
38071
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38072
|
+
assert.expect(1);
|
38073
|
+
assert.ok(true, 'ember-metal/lib/get_properties.js should pass ESLint\n\n');
|
38074
|
+
});
|
38075
|
+
|
38076
|
+
QUnit.module('ESLint | ember-metal/lib/index.js');
|
38077
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38078
|
+
assert.expect(1);
|
38079
|
+
assert.ok(true, 'ember-metal/lib/index.js should pass ESLint\n\n');
|
38080
|
+
});
|
38081
|
+
|
38082
|
+
QUnit.module('ESLint | ember-metal/lib/injected_property.js');
|
38083
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38084
|
+
assert.expect(1);
|
38085
|
+
assert.ok(true, 'ember-metal/lib/injected_property.js should pass ESLint\n\n');
|
38086
|
+
});
|
38087
|
+
|
38088
|
+
QUnit.module('ESLint | ember-metal/lib/instrumentation.js');
|
38089
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38090
|
+
assert.expect(1);
|
38091
|
+
assert.ok(true, 'ember-metal/lib/instrumentation.js should pass ESLint\n\n');
|
38092
|
+
});
|
38093
|
+
|
38094
|
+
QUnit.module('ESLint | ember-metal/lib/is_blank.js');
|
38095
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38096
|
+
assert.expect(1);
|
38097
|
+
assert.ok(true, 'ember-metal/lib/is_blank.js should pass ESLint\n\n');
|
38098
|
+
});
|
38099
|
+
|
38100
|
+
QUnit.module('ESLint | ember-metal/lib/is_empty.js');
|
38101
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38102
|
+
assert.expect(1);
|
38103
|
+
assert.ok(true, 'ember-metal/lib/is_empty.js should pass ESLint\n\n');
|
38104
|
+
});
|
38105
|
+
|
38106
|
+
QUnit.module('ESLint | ember-metal/lib/is_none.js');
|
38107
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38108
|
+
assert.expect(1);
|
38109
|
+
assert.ok(true, 'ember-metal/lib/is_none.js should pass ESLint\n\n');
|
38110
|
+
});
|
38111
|
+
|
38112
|
+
QUnit.module('ESLint | ember-metal/lib/is_present.js');
|
38113
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38114
|
+
assert.expect(1);
|
38115
|
+
assert.ok(true, 'ember-metal/lib/is_present.js should pass ESLint\n\n');
|
38116
|
+
});
|
38117
|
+
|
38118
|
+
QUnit.module('ESLint | ember-metal/lib/is_proxy.js');
|
38119
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38120
|
+
assert.expect(1);
|
38121
|
+
assert.ok(true, 'ember-metal/lib/is_proxy.js should pass ESLint\n\n');
|
38122
|
+
});
|
38123
|
+
|
38124
|
+
QUnit.module('ESLint | ember-metal/lib/libraries.js');
|
38125
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38126
|
+
assert.expect(1);
|
38127
|
+
assert.ok(true, 'ember-metal/lib/libraries.js should pass ESLint\n\n');
|
38128
|
+
});
|
38129
|
+
|
38130
|
+
QUnit.module('ESLint | ember-metal/lib/map.js');
|
38131
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38132
|
+
assert.expect(1);
|
38133
|
+
assert.ok(true, 'ember-metal/lib/map.js should pass ESLint\n\n');
|
38134
|
+
});
|
38135
|
+
|
38136
|
+
QUnit.module('ESLint | ember-metal/lib/merge.js');
|
38137
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38138
|
+
assert.expect(1);
|
38139
|
+
assert.ok(true, 'ember-metal/lib/merge.js should pass ESLint\n\n');
|
38140
|
+
});
|
38141
|
+
|
38142
|
+
QUnit.module('ESLint | ember-metal/lib/meta.js');
|
38143
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38144
|
+
assert.expect(1);
|
38145
|
+
assert.ok(true, 'ember-metal/lib/meta.js should pass ESLint\n\n');
|
38146
|
+
});
|
38147
|
+
|
38148
|
+
QUnit.module('ESLint | ember-metal/lib/meta_listeners.js');
|
38149
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38150
|
+
assert.expect(1);
|
38151
|
+
assert.ok(true, 'ember-metal/lib/meta_listeners.js should pass ESLint\n\n');
|
38152
|
+
});
|
38153
|
+
|
38154
|
+
QUnit.module('ESLint | ember-metal/lib/mixin.js');
|
38155
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38156
|
+
assert.expect(1);
|
38157
|
+
assert.ok(true, 'ember-metal/lib/mixin.js should pass ESLint\n\n');
|
38158
|
+
});
|
38159
|
+
|
38160
|
+
QUnit.module('ESLint | ember-metal/lib/observer.js');
|
38161
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38162
|
+
assert.expect(1);
|
38163
|
+
assert.ok(true, 'ember-metal/lib/observer.js should pass ESLint\n\n');
|
38164
|
+
});
|
38165
|
+
|
38166
|
+
QUnit.module('ESLint | ember-metal/lib/observer_set.js');
|
38167
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38168
|
+
assert.expect(1);
|
38169
|
+
assert.ok(true, 'ember-metal/lib/observer_set.js should pass ESLint\n\n');
|
38170
|
+
});
|
38171
|
+
|
38172
|
+
QUnit.module('ESLint | ember-metal/lib/path_cache.js');
|
38173
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38174
|
+
assert.expect(1);
|
38175
|
+
assert.ok(true, 'ember-metal/lib/path_cache.js should pass ESLint\n\n');
|
38176
|
+
});
|
38177
|
+
|
38178
|
+
QUnit.module('ESLint | ember-metal/lib/properties.js');
|
38179
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38180
|
+
assert.expect(1);
|
38181
|
+
assert.ok(true, 'ember-metal/lib/properties.js should pass ESLint\n\n');
|
38182
|
+
});
|
38183
|
+
|
38184
|
+
QUnit.module('ESLint | ember-metal/lib/property_events.js');
|
38185
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38186
|
+
assert.expect(1);
|
38187
|
+
assert.ok(true, 'ember-metal/lib/property_events.js should pass ESLint\n\n');
|
38188
|
+
});
|
38189
|
+
|
38190
|
+
QUnit.module('ESLint | ember-metal/lib/property_get.js');
|
38191
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38192
|
+
assert.expect(1);
|
38193
|
+
assert.ok(true, 'ember-metal/lib/property_get.js should pass ESLint\n\n');
|
38194
|
+
});
|
38195
|
+
|
38196
|
+
QUnit.module('ESLint | ember-metal/lib/property_set.js');
|
38197
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38198
|
+
assert.expect(1);
|
38199
|
+
assert.ok(true, 'ember-metal/lib/property_set.js should pass ESLint\n\n');
|
38200
|
+
});
|
38201
|
+
|
38202
|
+
QUnit.module('ESLint | ember-metal/lib/replace.js');
|
38203
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38204
|
+
assert.expect(1);
|
38205
|
+
assert.ok(true, 'ember-metal/lib/replace.js should pass ESLint\n\n');
|
38206
|
+
});
|
38207
|
+
|
38208
|
+
QUnit.module('ESLint | ember-metal/lib/run_loop.js');
|
38209
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38210
|
+
assert.expect(1);
|
38211
|
+
assert.ok(true, 'ember-metal/lib/run_loop.js should pass ESLint\n\n');
|
38212
|
+
});
|
38213
|
+
|
38214
|
+
QUnit.module('ESLint | ember-metal/lib/set_properties.js');
|
38215
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38216
|
+
assert.expect(1);
|
38217
|
+
assert.ok(true, 'ember-metal/lib/set_properties.js should pass ESLint\n\n');
|
38218
|
+
});
|
38219
|
+
|
38220
|
+
QUnit.module('ESLint | ember-metal/lib/tags.js');
|
38221
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38222
|
+
assert.expect(1);
|
38223
|
+
assert.ok(true, 'ember-metal/lib/tags.js should pass ESLint\n\n');
|
38224
|
+
});
|
38225
|
+
|
38226
|
+
QUnit.module('ESLint | ember-metal/lib/transaction.js');
|
38227
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38228
|
+
assert.expect(1);
|
38229
|
+
assert.ok(true, 'ember-metal/lib/transaction.js should pass ESLint\n\n');
|
38230
|
+
});
|
38231
|
+
|
38232
|
+
QUnit.module('ESLint | ember-metal/lib/watch_key.js');
|
38233
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38234
|
+
assert.expect(1);
|
38235
|
+
assert.ok(true, 'ember-metal/lib/watch_key.js should pass ESLint\n\n');
|
38236
|
+
});
|
38237
|
+
|
38238
|
+
QUnit.module('ESLint | ember-metal/lib/watch_path.js');
|
38239
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38240
|
+
assert.expect(1);
|
38241
|
+
assert.ok(true, 'ember-metal/lib/watch_path.js should pass ESLint\n\n');
|
38242
|
+
});
|
38243
|
+
|
38244
|
+
QUnit.module('ESLint | ember-metal/lib/watching.js');
|
38245
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38246
|
+
assert.expect(1);
|
38247
|
+
assert.ok(true, 'ember-metal/lib/watching.js should pass ESLint\n\n');
|
38248
|
+
});
|
38249
|
+
|
38250
|
+
QUnit.module('ESLint | ember-metal/lib/weak_map.js');
|
38251
|
+
QUnit.test('should pass ESLint', function(assert) {
|
38252
|
+
assert.expect(1);
|
38253
|
+
assert.ok(true, 'ember-metal/lib/weak_map.js should pass ESLint\n\n');
|
38456
38254
|
});
|
38457
38255
|
|
38458
38256
|
enifed('ember-metal/tests/accessors/get_path_test', ['ember-metal'], function (_emberMetal) {
|
@@ -45981,9 +45779,7 @@ enifed('ember-metal/tests/run_loop/later_test', ['ember-utils', 'ember-metal'],
|
|
45981
45779
|
// run loop has to flush, it would have considered
|
45982
45780
|
// the timer already expired.
|
45983
45781
|
function pauseUntil(time) {
|
45984
|
-
|
45985
|
-
while (+new Date() < time) {} /* do nothing - sleeping */
|
45986
|
-
// jscs:enable
|
45782
|
+
while (+new Date() < time) {/* do nothing - sleeping */}
|
45987
45783
|
}
|
45988
45784
|
|
45989
45785
|
QUnit.module('run.later', {
|
@@ -47269,118 +47065,124 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
47269
47065
|
assert.ok(true, 'ember-metal/tests/weak_map_test.js should pass ESLint\n\n');
|
47270
47066
|
});
|
47271
47067
|
|
47272
|
-
QUnit.module('ESLint | ember-routing/ext/controller.js');
|
47068
|
+
QUnit.module('ESLint | ember-routing/lib/ext/controller.js');
|
47069
|
+
QUnit.test('should pass ESLint', function(assert) {
|
47070
|
+
assert.expect(1);
|
47071
|
+
assert.ok(true, 'ember-routing/lib/ext/controller.js should pass ESLint\n\n');
|
47072
|
+
});
|
47073
|
+
|
47074
|
+
QUnit.module('ESLint | ember-routing/lib/ext/run_loop.js');
|
47273
47075
|
QUnit.test('should pass ESLint', function(assert) {
|
47274
47076
|
assert.expect(1);
|
47275
|
-
assert.ok(true, 'ember-routing/ext/
|
47077
|
+
assert.ok(true, 'ember-routing/lib/ext/run_loop.js should pass ESLint\n\n');
|
47276
47078
|
});
|
47277
47079
|
|
47278
|
-
QUnit.module('ESLint | ember-routing/
|
47080
|
+
QUnit.module('ESLint | ember-routing/lib/index.js');
|
47279
47081
|
QUnit.test('should pass ESLint', function(assert) {
|
47280
47082
|
assert.expect(1);
|
47281
|
-
assert.ok(true, 'ember-routing/
|
47083
|
+
assert.ok(true, 'ember-routing/lib/index.js should pass ESLint\n\n');
|
47282
47084
|
});
|
47283
47085
|
|
47284
|
-
QUnit.module('ESLint | ember-routing/
|
47086
|
+
QUnit.module('ESLint | ember-routing/lib/location/api.js');
|
47285
47087
|
QUnit.test('should pass ESLint', function(assert) {
|
47286
47088
|
assert.expect(1);
|
47287
|
-
assert.ok(true, 'ember-routing/
|
47089
|
+
assert.ok(true, 'ember-routing/lib/location/api.js should pass ESLint\n\n');
|
47288
47090
|
});
|
47289
47091
|
|
47290
|
-
QUnit.module('ESLint | ember-routing/location/
|
47092
|
+
QUnit.module('ESLint | ember-routing/lib/location/auto_location.js');
|
47291
47093
|
QUnit.test('should pass ESLint', function(assert) {
|
47292
47094
|
assert.expect(1);
|
47293
|
-
assert.ok(true, 'ember-routing/location/
|
47095
|
+
assert.ok(true, 'ember-routing/lib/location/auto_location.js should pass ESLint\n\n');
|
47294
47096
|
});
|
47295
47097
|
|
47296
|
-
QUnit.module('ESLint | ember-routing/location/
|
47098
|
+
QUnit.module('ESLint | ember-routing/lib/location/hash_location.js');
|
47297
47099
|
QUnit.test('should pass ESLint', function(assert) {
|
47298
47100
|
assert.expect(1);
|
47299
|
-
assert.ok(true, 'ember-routing/location/
|
47101
|
+
assert.ok(true, 'ember-routing/lib/location/hash_location.js should pass ESLint\n\n');
|
47300
47102
|
});
|
47301
47103
|
|
47302
|
-
QUnit.module('ESLint | ember-routing/location/
|
47104
|
+
QUnit.module('ESLint | ember-routing/lib/location/history_location.js');
|
47303
47105
|
QUnit.test('should pass ESLint', function(assert) {
|
47304
47106
|
assert.expect(1);
|
47305
|
-
assert.ok(true, 'ember-routing/location/
|
47107
|
+
assert.ok(true, 'ember-routing/lib/location/history_location.js should pass ESLint\n\n');
|
47306
47108
|
});
|
47307
47109
|
|
47308
|
-
QUnit.module('ESLint | ember-routing/location/
|
47110
|
+
QUnit.module('ESLint | ember-routing/lib/location/none_location.js');
|
47309
47111
|
QUnit.test('should pass ESLint', function(assert) {
|
47310
47112
|
assert.expect(1);
|
47311
|
-
assert.ok(true, 'ember-routing/location/
|
47113
|
+
assert.ok(true, 'ember-routing/lib/location/none_location.js should pass ESLint\n\n');
|
47312
47114
|
});
|
47313
47115
|
|
47314
|
-
QUnit.module('ESLint | ember-routing/location/
|
47116
|
+
QUnit.module('ESLint | ember-routing/lib/location/util.js');
|
47315
47117
|
QUnit.test('should pass ESLint', function(assert) {
|
47316
47118
|
assert.expect(1);
|
47317
|
-
assert.ok(true, 'ember-routing/location/
|
47119
|
+
assert.ok(true, 'ember-routing/lib/location/util.js should pass ESLint\n\n');
|
47318
47120
|
});
|
47319
47121
|
|
47320
|
-
QUnit.module('ESLint | ember-routing/
|
47122
|
+
QUnit.module('ESLint | ember-routing/lib/services/router.js');
|
47321
47123
|
QUnit.test('should pass ESLint', function(assert) {
|
47322
47124
|
assert.expect(1);
|
47323
|
-
assert.ok(true, 'ember-routing/
|
47125
|
+
assert.ok(true, 'ember-routing/lib/services/router.js should pass ESLint\n\n');
|
47324
47126
|
});
|
47325
47127
|
|
47326
|
-
QUnit.module('ESLint | ember-routing/services/
|
47128
|
+
QUnit.module('ESLint | ember-routing/lib/services/routing.js');
|
47327
47129
|
QUnit.test('should pass ESLint', function(assert) {
|
47328
47130
|
assert.expect(1);
|
47329
|
-
assert.ok(true, 'ember-routing/services/
|
47131
|
+
assert.ok(true, 'ember-routing/lib/services/routing.js should pass ESLint\n\n');
|
47330
47132
|
});
|
47331
47133
|
|
47332
|
-
QUnit.module('ESLint | ember-routing/
|
47134
|
+
QUnit.module('ESLint | ember-routing/lib/system/cache.js');
|
47333
47135
|
QUnit.test('should pass ESLint', function(assert) {
|
47334
47136
|
assert.expect(1);
|
47335
|
-
assert.ok(true, 'ember-routing/
|
47137
|
+
assert.ok(true, 'ember-routing/lib/system/cache.js should pass ESLint\n\n');
|
47336
47138
|
});
|
47337
47139
|
|
47338
|
-
QUnit.module('ESLint | ember-routing/system/
|
47140
|
+
QUnit.module('ESLint | ember-routing/lib/system/controller_for.js');
|
47339
47141
|
QUnit.test('should pass ESLint', function(assert) {
|
47340
47142
|
assert.expect(1);
|
47341
|
-
assert.ok(true, 'ember-routing/system/
|
47143
|
+
assert.ok(true, 'ember-routing/lib/system/controller_for.js should pass ESLint\n\n');
|
47342
47144
|
});
|
47343
47145
|
|
47344
|
-
QUnit.module('ESLint | ember-routing/system/
|
47146
|
+
QUnit.module('ESLint | ember-routing/lib/system/dsl.js');
|
47345
47147
|
QUnit.test('should pass ESLint', function(assert) {
|
47346
47148
|
assert.expect(1);
|
47347
|
-
assert.ok(true, 'ember-routing/system/
|
47149
|
+
assert.ok(true, 'ember-routing/lib/system/dsl.js should pass ESLint\n\n');
|
47348
47150
|
});
|
47349
47151
|
|
47350
|
-
QUnit.module('ESLint | ember-routing/system/
|
47152
|
+
QUnit.module('ESLint | ember-routing/lib/system/generate_controller.js');
|
47351
47153
|
QUnit.test('should pass ESLint', function(assert) {
|
47352
47154
|
assert.expect(1);
|
47353
|
-
assert.ok(true, 'ember-routing/system/
|
47155
|
+
assert.ok(true, 'ember-routing/lib/system/generate_controller.js should pass ESLint\n\n');
|
47354
47156
|
});
|
47355
47157
|
|
47356
|
-
QUnit.module('ESLint | ember-routing/system/
|
47158
|
+
QUnit.module('ESLint | ember-routing/lib/system/query_params.js');
|
47357
47159
|
QUnit.test('should pass ESLint', function(assert) {
|
47358
47160
|
assert.expect(1);
|
47359
|
-
assert.ok(true, 'ember-routing/system/
|
47161
|
+
assert.ok(true, 'ember-routing/lib/system/query_params.js should pass ESLint\n\n');
|
47360
47162
|
});
|
47361
47163
|
|
47362
|
-
QUnit.module('ESLint | ember-routing/system/
|
47164
|
+
QUnit.module('ESLint | ember-routing/lib/system/route.js');
|
47363
47165
|
QUnit.test('should pass ESLint', function(assert) {
|
47364
47166
|
assert.expect(1);
|
47365
|
-
assert.ok(true, 'ember-routing/system/
|
47167
|
+
assert.ok(true, 'ember-routing/lib/system/route.js should pass ESLint\n\n');
|
47366
47168
|
});
|
47367
47169
|
|
47368
|
-
QUnit.module('ESLint | ember-routing/system/
|
47170
|
+
QUnit.module('ESLint | ember-routing/lib/system/router.js');
|
47369
47171
|
QUnit.test('should pass ESLint', function(assert) {
|
47370
47172
|
assert.expect(1);
|
47371
|
-
assert.ok(true, 'ember-routing/system/
|
47173
|
+
assert.ok(true, 'ember-routing/lib/system/router.js should pass ESLint\n\n');
|
47372
47174
|
});
|
47373
47175
|
|
47374
|
-
QUnit.module('ESLint | ember-routing/system/
|
47176
|
+
QUnit.module('ESLint | ember-routing/lib/system/router_state.js');
|
47375
47177
|
QUnit.test('should pass ESLint', function(assert) {
|
47376
47178
|
assert.expect(1);
|
47377
|
-
assert.ok(true, 'ember-routing/system/
|
47179
|
+
assert.ok(true, 'ember-routing/lib/system/router_state.js should pass ESLint\n\n');
|
47378
47180
|
});
|
47379
47181
|
|
47380
|
-
QUnit.module('ESLint | ember-routing/
|
47182
|
+
QUnit.module('ESLint | ember-routing/lib/utils.js');
|
47381
47183
|
QUnit.test('should pass ESLint', function(assert) {
|
47382
47184
|
assert.expect(1);
|
47383
|
-
assert.ok(true, 'ember-routing/
|
47185
|
+
assert.ok(true, 'ember-routing/lib/utils.js should pass ESLint\n\n');
|
47384
47186
|
});
|
47385
47187
|
|
47386
47188
|
enifed('ember-routing/tests/ext/controller_test', ['ember-utils', 'internal-test-helpers', 'ember-runtime'], function (_emberUtils, _internalTestHelpers, _emberRuntime) {
|
@@ -48430,7 +48232,6 @@ enifed('ember-routing/tests/location/util_test', ['ember-utils', 'ember-routing/
|
|
48430
48232
|
}), true, 'When in IE8+, use onhashchange existence as evidence of the feature');
|
48431
48233
|
});
|
48432
48234
|
|
48433
|
-
// jscs:disable
|
48434
48235
|
QUnit.test("Feature-detecting the history API", function () {
|
48435
48236
|
equal((0, _util.supportsHistory)("", { pushState: true }), true, "returns true if not Android Gingerbread and history.pushState exists");
|
48436
48237
|
equal((0, _util.supportsHistory)("", {}), false, "returns false if history.pushState doesn't exist");
|
@@ -48447,7 +48248,6 @@ enifed('ember-routing/tests/location/util_test', ['ember-utils', 'ember-routing/
|
|
48447
48248
|
// Windows Phone UA and History API: https://github.com/Modernizr/Modernizr/issues/1471
|
48448
48249
|
equal((0, _util.supportsHistory)("Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; Microsoft; Virtual) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537", { pushState: true }), true, "returns true for Windows Phone 8.1 with misleading user agent string");
|
48449
48250
|
});
|
48450
|
-
// jscs:enable
|
48451
48251
|
});
|
48452
48252
|
QUnit.module('ESLint | ember-routing/tests/location/util_test.js');
|
48453
48253
|
QUnit.test('should pass ESLint', function(assert) {
|
@@ -49711,24 +49511,6 @@ enifed('ember-routing/tests/system/router_test', ['ember-utils', 'ember-routing/
|
|
49711
49511
|
|
49712
49512
|
(0, _router.triggerEvent)(handlerInfos, false, ['loading']);
|
49713
49513
|
});
|
49714
|
-
|
49715
|
-
QUnit.test('Router#router deprecates when called', function (assert) {
|
49716
|
-
assert.expect(2);
|
49717
|
-
|
49718
|
-
var router = createRouter();
|
49719
|
-
|
49720
|
-
expectDeprecation(function () {
|
49721
|
-
assert.equal(router.router, router._routerMicrolib);
|
49722
|
-
}, 'Usage of `router` is deprecated, use `_routerMicrolib` instead.');
|
49723
|
-
});
|
49724
|
-
|
49725
|
-
QUnit.test('Router#_routerMicrolib can be used without deprecation', function (assert) {
|
49726
|
-
assert.expect(1);
|
49727
|
-
|
49728
|
-
var router = createRouter();
|
49729
|
-
|
49730
|
-
assert.ok(router._routerMicrolib, 'Router._routerMicrolib can be used without deprecation');
|
49731
|
-
});
|
49732
49514
|
});
|
49733
49515
|
QUnit.module('ESLint | ember-routing/tests/system/router_test.js');
|
49734
49516
|
QUnit.test('should pass ESLint', function(assert) {
|
@@ -49777,238 +49559,238 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
49777
49559
|
assert.ok(true, 'ember-routing/tests/utils_test.js should pass ESLint\n\n');
|
49778
49560
|
});
|
49779
49561
|
|
49780
|
-
QUnit.module('ESLint | ember-
|
49562
|
+
QUnit.module('ESLint | ember-runtime/lib/compare.js');
|
49781
49563
|
QUnit.test('should pass ESLint', function(assert) {
|
49782
49564
|
assert.expect(1);
|
49783
|
-
assert.ok(true, 'ember-
|
49565
|
+
assert.ok(true, 'ember-runtime/lib/compare.js should pass ESLint\n\n');
|
49784
49566
|
});
|
49785
49567
|
|
49786
|
-
QUnit.module('ESLint | ember-runtime/
|
49568
|
+
QUnit.module('ESLint | ember-runtime/lib/computed/computed_macros.js');
|
49787
49569
|
QUnit.test('should pass ESLint', function(assert) {
|
49788
49570
|
assert.expect(1);
|
49789
|
-
assert.ok(true, 'ember-runtime/
|
49571
|
+
assert.ok(true, 'ember-runtime/lib/computed/computed_macros.js should pass ESLint\n\n');
|
49790
49572
|
});
|
49791
49573
|
|
49792
|
-
QUnit.module('ESLint | ember-runtime/computed/
|
49574
|
+
QUnit.module('ESLint | ember-runtime/lib/computed/reduce_computed_macros.js');
|
49793
49575
|
QUnit.test('should pass ESLint', function(assert) {
|
49794
49576
|
assert.expect(1);
|
49795
|
-
assert.ok(true, 'ember-runtime/computed/
|
49577
|
+
assert.ok(true, 'ember-runtime/lib/computed/reduce_computed_macros.js should pass ESLint\n\n');
|
49796
49578
|
});
|
49797
49579
|
|
49798
|
-
QUnit.module('ESLint | ember-runtime/
|
49580
|
+
QUnit.module('ESLint | ember-runtime/lib/controllers/controller.js');
|
49799
49581
|
QUnit.test('should pass ESLint', function(assert) {
|
49800
49582
|
assert.expect(1);
|
49801
|
-
assert.ok(true, 'ember-runtime/
|
49583
|
+
assert.ok(true, 'ember-runtime/lib/controllers/controller.js should pass ESLint\n\n');
|
49802
49584
|
});
|
49803
49585
|
|
49804
|
-
QUnit.module('ESLint | ember-runtime/
|
49586
|
+
QUnit.module('ESLint | ember-runtime/lib/copy.js');
|
49805
49587
|
QUnit.test('should pass ESLint', function(assert) {
|
49806
49588
|
assert.expect(1);
|
49807
|
-
assert.ok(true, 'ember-runtime/
|
49589
|
+
assert.ok(true, 'ember-runtime/lib/copy.js should pass ESLint\n\n');
|
49808
49590
|
});
|
49809
49591
|
|
49810
|
-
QUnit.module('ESLint | ember-runtime/
|
49592
|
+
QUnit.module('ESLint | ember-runtime/lib/ext/function.js');
|
49811
49593
|
QUnit.test('should pass ESLint', function(assert) {
|
49812
49594
|
assert.expect(1);
|
49813
|
-
assert.ok(true, 'ember-runtime/
|
49595
|
+
assert.ok(true, 'ember-runtime/lib/ext/function.js should pass ESLint\n\n');
|
49814
49596
|
});
|
49815
49597
|
|
49816
|
-
QUnit.module('ESLint | ember-runtime/ext/
|
49598
|
+
QUnit.module('ESLint | ember-runtime/lib/ext/rsvp.js');
|
49817
49599
|
QUnit.test('should pass ESLint', function(assert) {
|
49818
49600
|
assert.expect(1);
|
49819
|
-
assert.ok(true, 'ember-runtime/ext/
|
49601
|
+
assert.ok(true, 'ember-runtime/lib/ext/rsvp.js should pass ESLint\n\n');
|
49820
49602
|
});
|
49821
49603
|
|
49822
|
-
QUnit.module('ESLint | ember-runtime/ext/
|
49604
|
+
QUnit.module('ESLint | ember-runtime/lib/ext/string.js');
|
49823
49605
|
QUnit.test('should pass ESLint', function(assert) {
|
49824
49606
|
assert.expect(1);
|
49825
|
-
assert.ok(true, 'ember-runtime/ext/
|
49607
|
+
assert.ok(true, 'ember-runtime/lib/ext/string.js should pass ESLint\n\n');
|
49826
49608
|
});
|
49827
49609
|
|
49828
|
-
QUnit.module('ESLint | ember-runtime/
|
49610
|
+
QUnit.module('ESLint | ember-runtime/lib/index.js');
|
49829
49611
|
QUnit.test('should pass ESLint', function(assert) {
|
49830
49612
|
assert.expect(1);
|
49831
|
-
assert.ok(true, 'ember-runtime/
|
49613
|
+
assert.ok(true, 'ember-runtime/lib/index.js should pass ESLint\n\n');
|
49832
49614
|
});
|
49833
49615
|
|
49834
|
-
QUnit.module('ESLint | ember-runtime/
|
49616
|
+
QUnit.module('ESLint | ember-runtime/lib/inject.js');
|
49835
49617
|
QUnit.test('should pass ESLint', function(assert) {
|
49836
49618
|
assert.expect(1);
|
49837
|
-
assert.ok(true, 'ember-runtime/
|
49619
|
+
assert.ok(true, 'ember-runtime/lib/inject.js should pass ESLint\n\n');
|
49838
49620
|
});
|
49839
49621
|
|
49840
|
-
QUnit.module('ESLint | ember-runtime/
|
49622
|
+
QUnit.module('ESLint | ember-runtime/lib/is-equal.js');
|
49841
49623
|
QUnit.test('should pass ESLint', function(assert) {
|
49842
49624
|
assert.expect(1);
|
49843
|
-
assert.ok(true, 'ember-runtime/
|
49625
|
+
assert.ok(true, 'ember-runtime/lib/is-equal.js should pass ESLint\n\n');
|
49844
49626
|
});
|
49845
49627
|
|
49846
|
-
QUnit.module('ESLint | ember-runtime/
|
49628
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/-proxy.js');
|
49847
49629
|
QUnit.test('should pass ESLint', function(assert) {
|
49848
49630
|
assert.expect(1);
|
49849
|
-
assert.ok(true, 'ember-runtime/
|
49631
|
+
assert.ok(true, 'ember-runtime/lib/mixins/-proxy.js should pass ESLint\n\n');
|
49850
49632
|
});
|
49851
49633
|
|
49852
|
-
QUnit.module('ESLint | ember-runtime/mixins
|
49634
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/action_handler.js');
|
49853
49635
|
QUnit.test('should pass ESLint', function(assert) {
|
49854
49636
|
assert.expect(1);
|
49855
|
-
assert.ok(true, 'ember-runtime/mixins
|
49637
|
+
assert.ok(true, 'ember-runtime/lib/mixins/action_handler.js should pass ESLint\n\n');
|
49856
49638
|
});
|
49857
49639
|
|
49858
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49640
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/array.js');
|
49859
49641
|
QUnit.test('should pass ESLint', function(assert) {
|
49860
49642
|
assert.expect(1);
|
49861
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49643
|
+
assert.ok(true, 'ember-runtime/lib/mixins/array.js should pass ESLint\n\n');
|
49862
49644
|
});
|
49863
49645
|
|
49864
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49646
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/comparable.js');
|
49865
49647
|
QUnit.test('should pass ESLint', function(assert) {
|
49866
49648
|
assert.expect(1);
|
49867
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49649
|
+
assert.ok(true, 'ember-runtime/lib/mixins/comparable.js should pass ESLint\n\n');
|
49868
49650
|
});
|
49869
49651
|
|
49870
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49652
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/container_proxy.js');
|
49871
49653
|
QUnit.test('should pass ESLint', function(assert) {
|
49872
49654
|
assert.expect(1);
|
49873
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49655
|
+
assert.ok(true, 'ember-runtime/lib/mixins/container_proxy.js should pass ESLint\n\n');
|
49874
49656
|
});
|
49875
49657
|
|
49876
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49658
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/controller.js');
|
49877
49659
|
QUnit.test('should pass ESLint', function(assert) {
|
49878
49660
|
assert.expect(1);
|
49879
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49661
|
+
assert.ok(true, 'ember-runtime/lib/mixins/controller.js should pass ESLint\n\n');
|
49880
49662
|
});
|
49881
49663
|
|
49882
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49664
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/copyable.js');
|
49883
49665
|
QUnit.test('should pass ESLint', function(assert) {
|
49884
49666
|
assert.expect(1);
|
49885
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49667
|
+
assert.ok(true, 'ember-runtime/lib/mixins/copyable.js should pass ESLint\n\n');
|
49886
49668
|
});
|
49887
49669
|
|
49888
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49670
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/enumerable.js');
|
49889
49671
|
QUnit.test('should pass ESLint', function(assert) {
|
49890
49672
|
assert.expect(1);
|
49891
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49673
|
+
assert.ok(true, 'ember-runtime/lib/mixins/enumerable.js should pass ESLint\n\n');
|
49892
49674
|
});
|
49893
49675
|
|
49894
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49676
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/evented.js');
|
49895
49677
|
QUnit.test('should pass ESLint', function(assert) {
|
49896
49678
|
assert.expect(1);
|
49897
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49679
|
+
assert.ok(true, 'ember-runtime/lib/mixins/evented.js should pass ESLint\n\n');
|
49898
49680
|
});
|
49899
49681
|
|
49900
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49682
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/freezable.js');
|
49901
49683
|
QUnit.test('should pass ESLint', function(assert) {
|
49902
49684
|
assert.expect(1);
|
49903
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49685
|
+
assert.ok(true, 'ember-runtime/lib/mixins/freezable.js should pass ESLint\n\n');
|
49904
49686
|
});
|
49905
49687
|
|
49906
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49688
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/mutable_array.js');
|
49907
49689
|
QUnit.test('should pass ESLint', function(assert) {
|
49908
49690
|
assert.expect(1);
|
49909
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49691
|
+
assert.ok(true, 'ember-runtime/lib/mixins/mutable_array.js should pass ESLint\n\n');
|
49910
49692
|
});
|
49911
49693
|
|
49912
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49694
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/mutable_enumerable.js');
|
49913
49695
|
QUnit.test('should pass ESLint', function(assert) {
|
49914
49696
|
assert.expect(1);
|
49915
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49697
|
+
assert.ok(true, 'ember-runtime/lib/mixins/mutable_enumerable.js should pass ESLint\n\n');
|
49916
49698
|
});
|
49917
49699
|
|
49918
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49700
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/observable.js');
|
49919
49701
|
QUnit.test('should pass ESLint', function(assert) {
|
49920
49702
|
assert.expect(1);
|
49921
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49703
|
+
assert.ok(true, 'ember-runtime/lib/mixins/observable.js should pass ESLint\n\n');
|
49922
49704
|
});
|
49923
49705
|
|
49924
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49706
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/promise_proxy.js');
|
49925
49707
|
QUnit.test('should pass ESLint', function(assert) {
|
49926
49708
|
assert.expect(1);
|
49927
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49709
|
+
assert.ok(true, 'ember-runtime/lib/mixins/promise_proxy.js should pass ESLint\n\n');
|
49928
49710
|
});
|
49929
49711
|
|
49930
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49712
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/registry_proxy.js');
|
49931
49713
|
QUnit.test('should pass ESLint', function(assert) {
|
49932
49714
|
assert.expect(1);
|
49933
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49715
|
+
assert.ok(true, 'ember-runtime/lib/mixins/registry_proxy.js should pass ESLint\n\n');
|
49934
49716
|
});
|
49935
49717
|
|
49936
|
-
QUnit.module('ESLint | ember-runtime/mixins/
|
49718
|
+
QUnit.module('ESLint | ember-runtime/lib/mixins/target_action_support.js');
|
49937
49719
|
QUnit.test('should pass ESLint', function(assert) {
|
49938
49720
|
assert.expect(1);
|
49939
|
-
assert.ok(true, 'ember-runtime/mixins/
|
49721
|
+
assert.ok(true, 'ember-runtime/lib/mixins/target_action_support.js should pass ESLint\n\n');
|
49940
49722
|
});
|
49941
49723
|
|
49942
|
-
QUnit.module('ESLint | ember-runtime/
|
49724
|
+
QUnit.module('ESLint | ember-runtime/lib/string_registry.js');
|
49943
49725
|
QUnit.test('should pass ESLint', function(assert) {
|
49944
49726
|
assert.expect(1);
|
49945
|
-
assert.ok(true, 'ember-runtime/
|
49727
|
+
assert.ok(true, 'ember-runtime/lib/string_registry.js should pass ESLint\n\n');
|
49946
49728
|
});
|
49947
49729
|
|
49948
|
-
QUnit.module('ESLint | ember-runtime/
|
49730
|
+
QUnit.module('ESLint | ember-runtime/lib/system/application.js');
|
49949
49731
|
QUnit.test('should pass ESLint', function(assert) {
|
49950
49732
|
assert.expect(1);
|
49951
|
-
assert.ok(true, 'ember-runtime/
|
49733
|
+
assert.ok(true, 'ember-runtime/lib/system/application.js should pass ESLint\n\n');
|
49952
49734
|
});
|
49953
49735
|
|
49954
|
-
QUnit.module('ESLint | ember-runtime/system/
|
49736
|
+
QUnit.module('ESLint | ember-runtime/lib/system/array_proxy.js');
|
49955
49737
|
QUnit.test('should pass ESLint', function(assert) {
|
49956
49738
|
assert.expect(1);
|
49957
|
-
assert.ok(true, 'ember-runtime/system/
|
49739
|
+
assert.ok(true, 'ember-runtime/lib/system/array_proxy.js should pass ESLint\n\n');
|
49958
49740
|
});
|
49959
49741
|
|
49960
|
-
QUnit.module('ESLint | ember-runtime/system/
|
49742
|
+
QUnit.module('ESLint | ember-runtime/lib/system/core_object.js');
|
49961
49743
|
QUnit.test('should pass ESLint', function(assert) {
|
49962
49744
|
assert.expect(1);
|
49963
|
-
assert.ok(true, 'ember-runtime/system/
|
49745
|
+
assert.ok(true, 'ember-runtime/lib/system/core_object.js should pass ESLint\n\n');
|
49964
49746
|
});
|
49965
49747
|
|
49966
|
-
QUnit.module('ESLint | ember-runtime/system/
|
49748
|
+
QUnit.module('ESLint | ember-runtime/lib/system/lazy_load.js');
|
49967
49749
|
QUnit.test('should pass ESLint', function(assert) {
|
49968
49750
|
assert.expect(1);
|
49969
|
-
assert.ok(true, 'ember-runtime/system/
|
49751
|
+
assert.ok(true, 'ember-runtime/lib/system/lazy_load.js should pass ESLint\n\n');
|
49970
49752
|
});
|
49971
49753
|
|
49972
|
-
QUnit.module('ESLint | ember-runtime/system/
|
49754
|
+
QUnit.module('ESLint | ember-runtime/lib/system/namespace.js');
|
49973
49755
|
QUnit.test('should pass ESLint', function(assert) {
|
49974
49756
|
assert.expect(1);
|
49975
|
-
assert.ok(true, 'ember-runtime/system/
|
49757
|
+
assert.ok(true, 'ember-runtime/lib/system/namespace.js should pass ESLint\n\n');
|
49976
49758
|
});
|
49977
49759
|
|
49978
|
-
QUnit.module('ESLint | ember-runtime/system/
|
49760
|
+
QUnit.module('ESLint | ember-runtime/lib/system/native_array.js');
|
49979
49761
|
QUnit.test('should pass ESLint', function(assert) {
|
49980
49762
|
assert.expect(1);
|
49981
|
-
assert.ok(true, 'ember-runtime/system/
|
49763
|
+
assert.ok(true, 'ember-runtime/lib/system/native_array.js should pass ESLint\n\n');
|
49982
49764
|
});
|
49983
49765
|
|
49984
|
-
QUnit.module('ESLint | ember-runtime/system/
|
49766
|
+
QUnit.module('ESLint | ember-runtime/lib/system/object.js');
|
49985
49767
|
QUnit.test('should pass ESLint', function(assert) {
|
49986
49768
|
assert.expect(1);
|
49987
|
-
assert.ok(true, 'ember-runtime/system/
|
49769
|
+
assert.ok(true, 'ember-runtime/lib/system/object.js should pass ESLint\n\n');
|
49988
49770
|
});
|
49989
49771
|
|
49990
|
-
QUnit.module('ESLint | ember-runtime/system/
|
49772
|
+
QUnit.module('ESLint | ember-runtime/lib/system/object_proxy.js');
|
49991
49773
|
QUnit.test('should pass ESLint', function(assert) {
|
49992
49774
|
assert.expect(1);
|
49993
|
-
assert.ok(true, 'ember-runtime/system/
|
49775
|
+
assert.ok(true, 'ember-runtime/lib/system/object_proxy.js should pass ESLint\n\n');
|
49994
49776
|
});
|
49995
49777
|
|
49996
|
-
QUnit.module('ESLint | ember-runtime/system/
|
49778
|
+
QUnit.module('ESLint | ember-runtime/lib/system/service.js');
|
49997
49779
|
QUnit.test('should pass ESLint', function(assert) {
|
49998
49780
|
assert.expect(1);
|
49999
|
-
assert.ok(true, 'ember-runtime/system/
|
49781
|
+
assert.ok(true, 'ember-runtime/lib/system/service.js should pass ESLint\n\n');
|
50000
49782
|
});
|
50001
49783
|
|
50002
|
-
QUnit.module('ESLint | ember-runtime/system/
|
49784
|
+
QUnit.module('ESLint | ember-runtime/lib/system/string.js');
|
50003
49785
|
QUnit.test('should pass ESLint', function(assert) {
|
50004
49786
|
assert.expect(1);
|
50005
|
-
assert.ok(true, 'ember-runtime/system/
|
49787
|
+
assert.ok(true, 'ember-runtime/lib/system/string.js should pass ESLint\n\n');
|
50006
49788
|
});
|
50007
49789
|
|
50008
|
-
QUnit.module('ESLint | ember-runtime/
|
49790
|
+
QUnit.module('ESLint | ember-runtime/lib/utils.js');
|
50009
49791
|
QUnit.test('should pass ESLint', function(assert) {
|
50010
49792
|
assert.expect(1);
|
50011
|
-
assert.ok(true, 'ember-runtime/
|
49793
|
+
assert.ok(true, 'ember-runtime/lib/utils.js should pass ESLint\n\n');
|
50012
49794
|
});
|
50013
49795
|
|
50014
49796
|
enifed('ember-runtime/tests/computed/computed_macros_test', ['ember-metal', 'ember-runtime/computed/computed_macros', 'internal-test-helpers', 'ember-runtime/system/object', 'ember-runtime/system/native_array'], function (_emberMetal, _computed_macros, _internalTestHelpers, _object, _native_array) {
|
@@ -51237,8 +51019,8 @@ enifed('ember-runtime/tests/computed/reduce_computed_macros_test', ['ember-metal
|
|
51237
51019
|
|
51238
51020
|
var items = obj.get('items');
|
51239
51021
|
|
51240
|
-
items.replace(0, 1, jaime);
|
51241
|
-
items.replace(1, 1, jaimeInDisguise);
|
51022
|
+
items.replace(0, 1, [jaime]);
|
51023
|
+
items.replace(1, 1, [jaimeInDisguise]);
|
51242
51024
|
|
51243
51025
|
deepEqual(obj.get('sortedItems').mapBy('fname'), ['Cersei', 'Jaime', 'Bran', 'Robb'], 'precond - array is initially sorted');
|
51244
51026
|
|
@@ -53754,7 +53536,7 @@ enifed('ember-runtime/tests/legacy_1x/mixins/observable/observable_test', ['embe
|
|
53754
53536
|
});
|
53755
53537
|
|
53756
53538
|
QUnit.test('should notify array observer when array changes', function () {
|
53757
|
-
(0, _emberMetal.get)(object, 'normalArray').replace(0, 0, 6);
|
53539
|
+
(0, _emberMetal.get)(object, 'normalArray').replace(0, 0, [6]);
|
53758
53540
|
equal(object.abnormal, 'notifiedObserver', 'observer should be notified');
|
53759
53541
|
});
|
53760
53542
|
|
@@ -56631,6 +56413,26 @@ enifed('ember-runtime/tests/mixins/target_action_support_test', ['ember-environm
|
|
56631
56413
|
ok(true === obj.triggerAction(), 'a valid target and action were specified');
|
56632
56414
|
});
|
56633
56415
|
|
56416
|
+
QUnit.test('it should raise a deprecation warning when targetObject is specified and used', function () {
|
56417
|
+
expect(4);
|
56418
|
+
var obj = void 0;
|
56419
|
+
expectDeprecation(function () {
|
56420
|
+
obj = _object.default.extend(_target_action_support.default).create({
|
56421
|
+
action: 'anEvent',
|
56422
|
+
actionContext: {},
|
56423
|
+
targetObject: _object.default.create({
|
56424
|
+
anEvent: function (ctx) {
|
56425
|
+
ok(obj.actionContext === ctx, 'anEvent method was called with the expected context');
|
56426
|
+
}
|
56427
|
+
})
|
56428
|
+
});
|
56429
|
+
}, /Usage of `targetObject` is deprecated. Please use `target` instead./);
|
56430
|
+
ok(true === obj.triggerAction(), 'a valid targetObject and action were specified');
|
56431
|
+
expectDeprecation(function () {
|
56432
|
+
return obj.get('targetObject');
|
56433
|
+
}, /Usage of `targetObject` is deprecated. Please use `target` instead./);
|
56434
|
+
});
|
56435
|
+
|
56634
56436
|
QUnit.test('it should find an actionContext specified as a property path', function () {
|
56635
56437
|
expect(2);
|
56636
56438
|
|
@@ -61392,6 +61194,27 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
61392
61194
|
assert.ok(true, 'ember-runtime/tests/system/native_array/copyable_suite_test.js should pass ESLint\n\n');
|
61393
61195
|
});
|
61394
61196
|
|
61197
|
+
enifed('ember-runtime/tests/system/native_array/replace_test', ['ember-runtime/system/native_array'], function (_native_array) {
|
61198
|
+
'use strict';
|
61199
|
+
|
61200
|
+
QUnit.module('NativeArray.replace');
|
61201
|
+
|
61202
|
+
QUnit.test('raises assertion if third argument is not an array', function () {
|
61203
|
+
expectAssertion(function () {
|
61204
|
+
(0, _native_array.A)([1, 2, 3]).replace(1, 1, '');
|
61205
|
+
}, 'The third argument to replace needs to be an array.');
|
61206
|
+
});
|
61207
|
+
|
61208
|
+
QUnit.test('it does not raise an assertion if third parameter is not passed', function () {
|
61209
|
+
deepEqual((0, _native_array.A)([1, 2, 3]).replace(1, 2), (0, _native_array.A)([1]), 'no assertion raised');
|
61210
|
+
});
|
61211
|
+
});
|
61212
|
+
QUnit.module('ESLint | ember-runtime/tests/system/native_array/replace_test.js');
|
61213
|
+
QUnit.test('should pass ESLint', function(assert) {
|
61214
|
+
assert.expect(1);
|
61215
|
+
assert.ok(true, 'ember-runtime/tests/system/native_array/replace_test.js should pass ESLint\n\n');
|
61216
|
+
});
|
61217
|
+
|
61395
61218
|
enifed('ember-runtime/tests/system/native_array/suite_test', ['ember-runtime/system/native_array', 'ember-runtime/tests/suites/mutable_array'], function (_native_array, _mutable_array) {
|
61396
61219
|
'use strict';
|
61397
61220
|
|
@@ -63633,12 +63456,6 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
63633
63456
|
assert.ok(true, 'ember-runtime/tests/system/string/w_test.js should pass ESLint\n\n');
|
63634
63457
|
});
|
63635
63458
|
|
63636
|
-
QUnit.module('ESLint | ember-runtime/utils.js');
|
63637
|
-
QUnit.test('should pass ESLint', function(assert) {
|
63638
|
-
assert.expect(1);
|
63639
|
-
assert.ok(true, 'ember-runtime/utils.js should pass ESLint\n\n');
|
63640
|
-
});
|
63641
|
-
|
63642
63459
|
QUnit.module('ESLint | ember-template-compiler/compat.js');
|
63643
63460
|
QUnit.test('should pass ESLint', function(assert) {
|
63644
63461
|
assert.expect(1);
|
@@ -63651,6 +63468,162 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
63651
63468
|
assert.ok(true, 'ember-template-compiler/index.js should pass ESLint\n\n');
|
63652
63469
|
});
|
63653
63470
|
|
63471
|
+
QUnit.module('ESLint | ember-template-compiler/lib/compat.js');
|
63472
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63473
|
+
assert.expect(1);
|
63474
|
+
assert.ok(true, 'ember-template-compiler/lib/compat.js should pass ESLint\n\n');
|
63475
|
+
});
|
63476
|
+
|
63477
|
+
QUnit.module('ESLint | ember-template-compiler/lib/index.js');
|
63478
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63479
|
+
assert.expect(1);
|
63480
|
+
assert.ok(true, 'ember-template-compiler/lib/index.js should pass ESLint\n\n');
|
63481
|
+
});
|
63482
|
+
|
63483
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/assert-input-helper-without-block.js');
|
63484
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63485
|
+
assert.expect(1);
|
63486
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/assert-input-helper-without-block.js should pass ESLint\n\n');
|
63487
|
+
});
|
63488
|
+
|
63489
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/assert-reserved-named-arguments.js');
|
63490
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63491
|
+
assert.expect(1);
|
63492
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/assert-reserved-named-arguments.js should pass ESLint\n\n');
|
63493
|
+
});
|
63494
|
+
|
63495
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/deprecate-render-model.js');
|
63496
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63497
|
+
assert.expect(1);
|
63498
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/deprecate-render-model.js should pass ESLint\n\n');
|
63499
|
+
});
|
63500
|
+
|
63501
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/deprecate-render.js');
|
63502
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63503
|
+
assert.expect(1);
|
63504
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/deprecate-render.js should pass ESLint\n\n');
|
63505
|
+
});
|
63506
|
+
|
63507
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/extract-pragma-tag.js');
|
63508
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63509
|
+
assert.expect(1);
|
63510
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/extract-pragma-tag.js should pass ESLint\n\n');
|
63511
|
+
});
|
63512
|
+
|
63513
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/index.js');
|
63514
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63515
|
+
assert.expect(1);
|
63516
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/index.js should pass ESLint\n\n');
|
63517
|
+
});
|
63518
|
+
|
63519
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-action-syntax.js');
|
63520
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63521
|
+
assert.expect(1);
|
63522
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-action-syntax.js should pass ESLint\n\n');
|
63523
|
+
});
|
63524
|
+
|
63525
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-angle-bracket-components.js');
|
63526
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63527
|
+
assert.expect(1);
|
63528
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-angle-bracket-components.js should pass ESLint\n\n');
|
63529
|
+
});
|
63530
|
+
|
63531
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-attrs-into-args.js');
|
63532
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63533
|
+
assert.expect(1);
|
63534
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-attrs-into-args.js should pass ESLint\n\n');
|
63535
|
+
});
|
63536
|
+
|
63537
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-dot-component-invocation.js');
|
63538
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63539
|
+
assert.expect(1);
|
63540
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-dot-component-invocation.js should pass ESLint\n\n');
|
63541
|
+
});
|
63542
|
+
|
63543
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-each-in-into-each.js');
|
63544
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63545
|
+
assert.expect(1);
|
63546
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-each-in-into-each.js should pass ESLint\n\n');
|
63547
|
+
});
|
63548
|
+
|
63549
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-has-block-syntax.js');
|
63550
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63551
|
+
assert.expect(1);
|
63552
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-has-block-syntax.js should pass ESLint\n\n');
|
63553
|
+
});
|
63554
|
+
|
63555
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-inline-link-to.js');
|
63556
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63557
|
+
assert.expect(1);
|
63558
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-inline-link-to.js should pass ESLint\n\n');
|
63559
|
+
});
|
63560
|
+
|
63561
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-input-on-to-onEvent.js');
|
63562
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63563
|
+
assert.expect(1);
|
63564
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-input-on-to-onEvent.js should pass ESLint\n\n');
|
63565
|
+
});
|
63566
|
+
|
63567
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-input-type-syntax.js');
|
63568
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63569
|
+
assert.expect(1);
|
63570
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-input-type-syntax.js should pass ESLint\n\n');
|
63571
|
+
});
|
63572
|
+
|
63573
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-old-binding-syntax.js');
|
63574
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63575
|
+
assert.expect(1);
|
63576
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-old-binding-syntax.js should pass ESLint\n\n');
|
63577
|
+
});
|
63578
|
+
|
63579
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-old-class-binding-syntax.js');
|
63580
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63581
|
+
assert.expect(1);
|
63582
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-old-class-binding-syntax.js should pass ESLint\n\n');
|
63583
|
+
});
|
63584
|
+
|
63585
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-quoted-bindings-into-just-bindings.js');
|
63586
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63587
|
+
assert.expect(1);
|
63588
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-quoted-bindings-into-just-bindings.js should pass ESLint\n\n');
|
63589
|
+
});
|
63590
|
+
|
63591
|
+
QUnit.module('ESLint | ember-template-compiler/lib/plugins/transform-top-level-components.js');
|
63592
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63593
|
+
assert.expect(1);
|
63594
|
+
assert.ok(true, 'ember-template-compiler/lib/plugins/transform-top-level-components.js should pass ESLint\n\n');
|
63595
|
+
});
|
63596
|
+
|
63597
|
+
QUnit.module('ESLint | ember-template-compiler/lib/system/bootstrap.js');
|
63598
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63599
|
+
assert.expect(1);
|
63600
|
+
assert.ok(true, 'ember-template-compiler/lib/system/bootstrap.js should pass ESLint\n\n');
|
63601
|
+
});
|
63602
|
+
|
63603
|
+
QUnit.module('ESLint | ember-template-compiler/lib/system/calculate-location-display.js');
|
63604
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63605
|
+
assert.expect(1);
|
63606
|
+
assert.ok(true, 'ember-template-compiler/lib/system/calculate-location-display.js should pass ESLint\n\n');
|
63607
|
+
});
|
63608
|
+
|
63609
|
+
QUnit.module('ESLint | ember-template-compiler/lib/system/compile-options.js');
|
63610
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63611
|
+
assert.expect(1);
|
63612
|
+
assert.ok(true, 'ember-template-compiler/lib/system/compile-options.js should pass ESLint\n\n');
|
63613
|
+
});
|
63614
|
+
|
63615
|
+
QUnit.module('ESLint | ember-template-compiler/lib/system/compile.js');
|
63616
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63617
|
+
assert.expect(1);
|
63618
|
+
assert.ok(true, 'ember-template-compiler/lib/system/compile.js should pass ESLint\n\n');
|
63619
|
+
});
|
63620
|
+
|
63621
|
+
QUnit.module('ESLint | ember-template-compiler/lib/system/precompile.js');
|
63622
|
+
QUnit.test('should pass ESLint', function(assert) {
|
63623
|
+
assert.expect(1);
|
63624
|
+
assert.ok(true, 'ember-template-compiler/lib/system/precompile.js should pass ESLint\n\n');
|
63625
|
+
});
|
63626
|
+
|
63654
63627
|
QUnit.module('ESLint | ember-template-compiler/plugins/assert-input-helper-without-block.js');
|
63655
63628
|
QUnit.test('should pass ESLint', function(assert) {
|
63656
63629
|
assert.expect(1);
|
@@ -63905,7 +63878,9 @@ enifed('ember-template-compiler/tests/plugins/transform-dot-component-invocation
|
|
63905
63878
|
QUnit.test('Does not throw a compiler error for path components', function (assert) {
|
63906
63879
|
assert.expect(1);
|
63907
63880
|
|
63908
|
-
['{{this.modal open}}', '{{this.modal isOpen=true}}', '{{#this.modal}}Woot{{/this.modal}}', '{{c.modal open}}', '{{c.modal isOpen=true}}', '{{#c.modal}}Woot{{/c.modal}}', '{{#my-component as |c|}}{{c.a name="Chad"}}{{/my-component}}', '{{#my-component as |c|}}{{c.a "Chad"}}{{/my-component}}', '{{#my-component as |c|}}{{#c.a}}{{/c.a}}{{/my-component}}'
|
63881
|
+
['{{this.modal open}}', '{{this.modal isOpen=true}}', '{{#this.modal}}Woot{{/this.modal}}', '{{c.modal open}}', '{{c.modal isOpen=true}}', '{{#c.modal}}Woot{{/c.modal}}', '{{#my-component as |c|}}{{c.a name="Chad"}}{{/my-component}}', '{{#my-component as |c|}}{{c.a "Chad"}}{{/my-component}}', '{{#my-component as |c|}}{{#c.a}}{{/c.a}}{{/my-component}}', '<input disabled={{true}}>', // GH#15740
|
63882
|
+
'<td colspan={{3}}></td>' // GH#15217
|
63883
|
+
].forEach(function (layout, i) {
|
63909
63884
|
(0, _index.compile)(layout, { moduleName: 'example-' + i });
|
63910
63885
|
});
|
63911
63886
|
|
@@ -64294,6 +64269,192 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
64294
64269
|
assert.ok(true, 'ember-testing/initializers.js should pass ESLint\n\n');
|
64295
64270
|
});
|
64296
64271
|
|
64272
|
+
QUnit.module('ESLint | ember-testing/lib/adapters/adapter.js');
|
64273
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64274
|
+
assert.expect(1);
|
64275
|
+
assert.ok(true, 'ember-testing/lib/adapters/adapter.js should pass ESLint\n\n');
|
64276
|
+
});
|
64277
|
+
|
64278
|
+
QUnit.module('ESLint | ember-testing/lib/adapters/qunit.js');
|
64279
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64280
|
+
assert.expect(1);
|
64281
|
+
assert.ok(true, 'ember-testing/lib/adapters/qunit.js should pass ESLint\n\n');
|
64282
|
+
});
|
64283
|
+
|
64284
|
+
QUnit.module('ESLint | ember-testing/lib/events.js');
|
64285
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64286
|
+
assert.expect(1);
|
64287
|
+
assert.ok(true, 'ember-testing/lib/events.js should pass ESLint\n\n');
|
64288
|
+
});
|
64289
|
+
|
64290
|
+
QUnit.module('ESLint | ember-testing/lib/ext/application.js');
|
64291
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64292
|
+
assert.expect(1);
|
64293
|
+
assert.ok(true, 'ember-testing/lib/ext/application.js should pass ESLint\n\n');
|
64294
|
+
});
|
64295
|
+
|
64296
|
+
QUnit.module('ESLint | ember-testing/lib/ext/rsvp.js');
|
64297
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64298
|
+
assert.expect(1);
|
64299
|
+
assert.ok(true, 'ember-testing/lib/ext/rsvp.js should pass ESLint\n\n');
|
64300
|
+
});
|
64301
|
+
|
64302
|
+
QUnit.module('ESLint | ember-testing/lib/helpers.js');
|
64303
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64304
|
+
assert.expect(1);
|
64305
|
+
assert.ok(true, 'ember-testing/lib/helpers.js should pass ESLint\n\n');
|
64306
|
+
});
|
64307
|
+
|
64308
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/and_then.js');
|
64309
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64310
|
+
assert.expect(1);
|
64311
|
+
assert.ok(true, 'ember-testing/lib/helpers/and_then.js should pass ESLint\n\n');
|
64312
|
+
});
|
64313
|
+
|
64314
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/click.js');
|
64315
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64316
|
+
assert.expect(1);
|
64317
|
+
assert.ok(true, 'ember-testing/lib/helpers/click.js should pass ESLint\n\n');
|
64318
|
+
});
|
64319
|
+
|
64320
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/current_path.js');
|
64321
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64322
|
+
assert.expect(1);
|
64323
|
+
assert.ok(true, 'ember-testing/lib/helpers/current_path.js should pass ESLint\n\n');
|
64324
|
+
});
|
64325
|
+
|
64326
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/current_route_name.js');
|
64327
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64328
|
+
assert.expect(1);
|
64329
|
+
assert.ok(true, 'ember-testing/lib/helpers/current_route_name.js should pass ESLint\n\n');
|
64330
|
+
});
|
64331
|
+
|
64332
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/current_url.js');
|
64333
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64334
|
+
assert.expect(1);
|
64335
|
+
assert.ok(true, 'ember-testing/lib/helpers/current_url.js should pass ESLint\n\n');
|
64336
|
+
});
|
64337
|
+
|
64338
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/fill_in.js');
|
64339
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64340
|
+
assert.expect(1);
|
64341
|
+
assert.ok(true, 'ember-testing/lib/helpers/fill_in.js should pass ESLint\n\n');
|
64342
|
+
});
|
64343
|
+
|
64344
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/find.js');
|
64345
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64346
|
+
assert.expect(1);
|
64347
|
+
assert.ok(true, 'ember-testing/lib/helpers/find.js should pass ESLint\n\n');
|
64348
|
+
});
|
64349
|
+
|
64350
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/find_with_assert.js');
|
64351
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64352
|
+
assert.expect(1);
|
64353
|
+
assert.ok(true, 'ember-testing/lib/helpers/find_with_assert.js should pass ESLint\n\n');
|
64354
|
+
});
|
64355
|
+
|
64356
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/key_event.js');
|
64357
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64358
|
+
assert.expect(1);
|
64359
|
+
assert.ok(true, 'ember-testing/lib/helpers/key_event.js should pass ESLint\n\n');
|
64360
|
+
});
|
64361
|
+
|
64362
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/pause_test.js');
|
64363
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64364
|
+
assert.expect(1);
|
64365
|
+
assert.ok(true, 'ember-testing/lib/helpers/pause_test.js should pass ESLint\n\n');
|
64366
|
+
});
|
64367
|
+
|
64368
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/trigger_event.js');
|
64369
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64370
|
+
assert.expect(1);
|
64371
|
+
assert.ok(true, 'ember-testing/lib/helpers/trigger_event.js should pass ESLint\n\n');
|
64372
|
+
});
|
64373
|
+
|
64374
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/visit.js');
|
64375
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64376
|
+
assert.expect(1);
|
64377
|
+
assert.ok(true, 'ember-testing/lib/helpers/visit.js should pass ESLint\n\n');
|
64378
|
+
});
|
64379
|
+
|
64380
|
+
QUnit.module('ESLint | ember-testing/lib/helpers/wait.js');
|
64381
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64382
|
+
assert.expect(1);
|
64383
|
+
assert.ok(true, 'ember-testing/lib/helpers/wait.js should pass ESLint\n\n');
|
64384
|
+
});
|
64385
|
+
|
64386
|
+
QUnit.module('ESLint | ember-testing/lib/index.js');
|
64387
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64388
|
+
assert.expect(1);
|
64389
|
+
assert.ok(true, 'ember-testing/lib/index.js should pass ESLint\n\n');
|
64390
|
+
});
|
64391
|
+
|
64392
|
+
QUnit.module('ESLint | ember-testing/lib/initializers.js');
|
64393
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64394
|
+
assert.expect(1);
|
64395
|
+
assert.ok(true, 'ember-testing/lib/initializers.js should pass ESLint\n\n');
|
64396
|
+
});
|
64397
|
+
|
64398
|
+
QUnit.module('ESLint | ember-testing/lib/setup_for_testing.js');
|
64399
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64400
|
+
assert.expect(1);
|
64401
|
+
assert.ok(true, 'ember-testing/lib/setup_for_testing.js should pass ESLint\n\n');
|
64402
|
+
});
|
64403
|
+
|
64404
|
+
QUnit.module('ESLint | ember-testing/lib/support.js');
|
64405
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64406
|
+
assert.expect(1);
|
64407
|
+
assert.ok(true, 'ember-testing/lib/support.js should pass ESLint\n\n');
|
64408
|
+
});
|
64409
|
+
|
64410
|
+
QUnit.module('ESLint | ember-testing/lib/test.js');
|
64411
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64412
|
+
assert.expect(1);
|
64413
|
+
assert.ok(true, 'ember-testing/lib/test.js should pass ESLint\n\n');
|
64414
|
+
});
|
64415
|
+
|
64416
|
+
QUnit.module('ESLint | ember-testing/lib/test/adapter.js');
|
64417
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64418
|
+
assert.expect(1);
|
64419
|
+
assert.ok(true, 'ember-testing/lib/test/adapter.js should pass ESLint\n\n');
|
64420
|
+
});
|
64421
|
+
|
64422
|
+
QUnit.module('ESLint | ember-testing/lib/test/helpers.js');
|
64423
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64424
|
+
assert.expect(1);
|
64425
|
+
assert.ok(true, 'ember-testing/lib/test/helpers.js should pass ESLint\n\n');
|
64426
|
+
});
|
64427
|
+
|
64428
|
+
QUnit.module('ESLint | ember-testing/lib/test/on_inject_helpers.js');
|
64429
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64430
|
+
assert.expect(1);
|
64431
|
+
assert.ok(true, 'ember-testing/lib/test/on_inject_helpers.js should pass ESLint\n\n');
|
64432
|
+
});
|
64433
|
+
|
64434
|
+
QUnit.module('ESLint | ember-testing/lib/test/pending_requests.js');
|
64435
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64436
|
+
assert.expect(1);
|
64437
|
+
assert.ok(true, 'ember-testing/lib/test/pending_requests.js should pass ESLint\n\n');
|
64438
|
+
});
|
64439
|
+
|
64440
|
+
QUnit.module('ESLint | ember-testing/lib/test/promise.js');
|
64441
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64442
|
+
assert.expect(1);
|
64443
|
+
assert.ok(true, 'ember-testing/lib/test/promise.js should pass ESLint\n\n');
|
64444
|
+
});
|
64445
|
+
|
64446
|
+
QUnit.module('ESLint | ember-testing/lib/test/run.js');
|
64447
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64448
|
+
assert.expect(1);
|
64449
|
+
assert.ok(true, 'ember-testing/lib/test/run.js should pass ESLint\n\n');
|
64450
|
+
});
|
64451
|
+
|
64452
|
+
QUnit.module('ESLint | ember-testing/lib/test/waiters.js');
|
64453
|
+
QUnit.test('should pass ESLint', function(assert) {
|
64454
|
+
assert.expect(1);
|
64455
|
+
assert.ok(true, 'ember-testing/lib/test/waiters.js should pass ESLint\n\n');
|
64456
|
+
});
|
64457
|
+
|
64297
64458
|
QUnit.module('ESLint | ember-testing/setup_for_testing.js');
|
64298
64459
|
QUnit.test('should pass ESLint', function(assert) {
|
64299
64460
|
assert.expect(1);
|
@@ -66038,6 +66199,7 @@ enifed('ember-testing/tests/helpers_test', ['ember-babel', 'internal-test-helper
|
|
66038
66199
|
_this31.router.map(function () {
|
66039
66200
|
this.route('posts', { resetNamespace: true }, function () {
|
66040
66201
|
this.route('new');
|
66202
|
+
this.route('edit', { resetNamespace: true });
|
66041
66203
|
});
|
66042
66204
|
});
|
66043
66205
|
});
|
@@ -66083,6 +66245,18 @@ enifed('ember-testing/tests/helpers_test', ['ember-babel', 'internal-test-helper
|
|
66083
66245
|
});
|
66084
66246
|
};
|
66085
66247
|
|
66248
|
+
_class4.prototype['@test currentRouteName for \'/posts/edit\''] = function (assert) {
|
66249
|
+
assert.expect(3);
|
66250
|
+
|
66251
|
+
var testHelpers = this.application.testHelpers;
|
66252
|
+
|
66253
|
+
return testHelpers.visit('/posts/edit').then(function () {
|
66254
|
+
assert.equal(testHelpers.currentRouteName(), 'edit', 'should equal \'edit\'.');
|
66255
|
+
assert.equal(testHelpers.currentPath(), 'posts.edit', 'should equal \'posts.edit\'.');
|
66256
|
+
assert.equal(testHelpers.currentURL(), '/posts/edit', 'should equal \'/posts/edit\'.');
|
66257
|
+
});
|
66258
|
+
};
|
66259
|
+
|
66086
66260
|
return _class4;
|
66087
66261
|
}(HelpersTestCase));
|
66088
66262
|
|
@@ -66584,6 +66758,108 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
66584
66758
|
assert.ok(true, 'ember-utils.js should pass ESLint\n\n');
|
66585
66759
|
});
|
66586
66760
|
|
66761
|
+
QUnit.module('ESLint | ember-utils/lib/apply-str.js');
|
66762
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66763
|
+
assert.expect(1);
|
66764
|
+
assert.ok(true, 'ember-utils/lib/apply-str.js should pass ESLint\n\n');
|
66765
|
+
});
|
66766
|
+
|
66767
|
+
QUnit.module('ESLint | ember-utils/lib/assign.js');
|
66768
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66769
|
+
assert.expect(1);
|
66770
|
+
assert.ok(true, 'ember-utils/lib/assign.js should pass ESLint\n\n');
|
66771
|
+
});
|
66772
|
+
|
66773
|
+
QUnit.module('ESLint | ember-utils/lib/dictionary.js');
|
66774
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66775
|
+
assert.expect(1);
|
66776
|
+
assert.ok(true, 'ember-utils/lib/dictionary.js should pass ESLint\n\n');
|
66777
|
+
});
|
66778
|
+
|
66779
|
+
QUnit.module('ESLint | ember-utils/lib/guid.js');
|
66780
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66781
|
+
assert.expect(1);
|
66782
|
+
assert.ok(true, 'ember-utils/lib/guid.js should pass ESLint\n\n');
|
66783
|
+
});
|
66784
|
+
|
66785
|
+
QUnit.module('ESLint | ember-utils/lib/index.js');
|
66786
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66787
|
+
assert.expect(1);
|
66788
|
+
assert.ok(true, 'ember-utils/lib/index.js should pass ESLint\n\n');
|
66789
|
+
});
|
66790
|
+
|
66791
|
+
QUnit.module('ESLint | ember-utils/lib/inspect.js');
|
66792
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66793
|
+
assert.expect(1);
|
66794
|
+
assert.ok(true, 'ember-utils/lib/inspect.js should pass ESLint\n\n');
|
66795
|
+
});
|
66796
|
+
|
66797
|
+
QUnit.module('ESLint | ember-utils/lib/intern.js');
|
66798
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66799
|
+
assert.expect(1);
|
66800
|
+
assert.ok(true, 'ember-utils/lib/intern.js should pass ESLint\n\n');
|
66801
|
+
});
|
66802
|
+
|
66803
|
+
QUnit.module('ESLint | ember-utils/lib/invoke.js');
|
66804
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66805
|
+
assert.expect(1);
|
66806
|
+
assert.ok(true, 'ember-utils/lib/invoke.js should pass ESLint\n\n');
|
66807
|
+
});
|
66808
|
+
|
66809
|
+
QUnit.module('ESLint | ember-utils/lib/lookup-descriptor.js');
|
66810
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66811
|
+
assert.expect(1);
|
66812
|
+
assert.ok(true, 'ember-utils/lib/lookup-descriptor.js should pass ESLint\n\n');
|
66813
|
+
});
|
66814
|
+
|
66815
|
+
QUnit.module('ESLint | ember-utils/lib/make-array.js');
|
66816
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66817
|
+
assert.expect(1);
|
66818
|
+
assert.ok(true, 'ember-utils/lib/make-array.js should pass ESLint\n\n');
|
66819
|
+
});
|
66820
|
+
|
66821
|
+
QUnit.module('ESLint | ember-utils/lib/name.js');
|
66822
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66823
|
+
assert.expect(1);
|
66824
|
+
assert.ok(true, 'ember-utils/lib/name.js should pass ESLint\n\n');
|
66825
|
+
});
|
66826
|
+
|
66827
|
+
QUnit.module('ESLint | ember-utils/lib/owner.js');
|
66828
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66829
|
+
assert.expect(1);
|
66830
|
+
assert.ok(true, 'ember-utils/lib/owner.js should pass ESLint\n\n');
|
66831
|
+
});
|
66832
|
+
|
66833
|
+
QUnit.module('ESLint | ember-utils/lib/proxy-utils.js');
|
66834
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66835
|
+
assert.expect(1);
|
66836
|
+
assert.ok(true, 'ember-utils/lib/proxy-utils.js should pass ESLint\n\n');
|
66837
|
+
});
|
66838
|
+
|
66839
|
+
QUnit.module('ESLint | ember-utils/lib/super.js');
|
66840
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66841
|
+
assert.expect(1);
|
66842
|
+
assert.ok(true, 'ember-utils/lib/super.js should pass ESLint\n\n');
|
66843
|
+
});
|
66844
|
+
|
66845
|
+
QUnit.module('ESLint | ember-utils/lib/symbol.js');
|
66846
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66847
|
+
assert.expect(1);
|
66848
|
+
assert.ok(true, 'ember-utils/lib/symbol.js should pass ESLint\n\n');
|
66849
|
+
});
|
66850
|
+
|
66851
|
+
QUnit.module('ESLint | ember-utils/lib/to-string.js');
|
66852
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66853
|
+
assert.expect(1);
|
66854
|
+
assert.ok(true, 'ember-utils/lib/to-string.js should pass ESLint\n\n');
|
66855
|
+
});
|
66856
|
+
|
66857
|
+
QUnit.module('ESLint | ember-utils/lib/weak-map-utils.js');
|
66858
|
+
QUnit.test('should pass ESLint', function(assert) {
|
66859
|
+
assert.expect(1);
|
66860
|
+
assert.ok(true, 'ember-utils/lib/weak-map-utils.js should pass ESLint\n\n');
|
66861
|
+
});
|
66862
|
+
|
66587
66863
|
enifed('ember-utils/tests/assign_test', ['ember-utils'], function (_emberUtils) {
|
66588
66864
|
'use strict';
|
66589
66865
|
|
@@ -67003,154 +67279,154 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
67003
67279
|
assert.ok(true, 'ember-utils/tests/try_invoke_test.js should pass ESLint\n\n');
|
67004
67280
|
});
|
67005
67281
|
|
67006
|
-
QUnit.module('ESLint | ember-views/compat/attrs.js');
|
67282
|
+
QUnit.module('ESLint | ember-views/lib/compat/attrs.js');
|
67007
67283
|
QUnit.test('should pass ESLint', function(assert) {
|
67008
67284
|
assert.expect(1);
|
67009
|
-
assert.ok(true, 'ember-views/compat/attrs.js should pass ESLint\n\n');
|
67285
|
+
assert.ok(true, 'ember-views/lib/compat/attrs.js should pass ESLint\n\n');
|
67010
67286
|
});
|
67011
67287
|
|
67012
|
-
QUnit.module('ESLint | ember-views/compat/fallback-view-registry.js');
|
67288
|
+
QUnit.module('ESLint | ember-views/lib/compat/fallback-view-registry.js');
|
67013
67289
|
QUnit.test('should pass ESLint', function(assert) {
|
67014
67290
|
assert.expect(1);
|
67015
|
-
assert.ok(true, 'ember-views/compat/fallback-view-registry.js should pass ESLint\n\n');
|
67291
|
+
assert.ok(true, 'ember-views/lib/compat/fallback-view-registry.js should pass ESLint\n\n');
|
67016
67292
|
});
|
67017
67293
|
|
67018
|
-
QUnit.module('ESLint | ember-views/component_lookup.js');
|
67294
|
+
QUnit.module('ESLint | ember-views/lib/component_lookup.js');
|
67019
67295
|
QUnit.test('should pass ESLint', function(assert) {
|
67020
67296
|
assert.expect(1);
|
67021
|
-
assert.ok(true, 'ember-views/component_lookup.js should pass ESLint\n\n');
|
67297
|
+
assert.ok(true, 'ember-views/lib/component_lookup.js should pass ESLint\n\n');
|
67022
67298
|
});
|
67023
67299
|
|
67024
|
-
QUnit.module('ESLint | ember-views/index.js');
|
67300
|
+
QUnit.module('ESLint | ember-views/lib/index.js');
|
67025
67301
|
QUnit.test('should pass ESLint', function(assert) {
|
67026
67302
|
assert.expect(1);
|
67027
|
-
assert.ok(true, 'ember-views/index.js should pass ESLint\n\n');
|
67303
|
+
assert.ok(true, 'ember-views/lib/index.js should pass ESLint\n\n');
|
67028
67304
|
});
|
67029
67305
|
|
67030
|
-
QUnit.module('ESLint | ember-views/mixins/action_support.js');
|
67306
|
+
QUnit.module('ESLint | ember-views/lib/mixins/action_support.js');
|
67031
67307
|
QUnit.test('should pass ESLint', function(assert) {
|
67032
67308
|
assert.expect(1);
|
67033
|
-
assert.ok(true, 'ember-views/mixins/action_support.js should pass ESLint\n\n');
|
67309
|
+
assert.ok(true, 'ember-views/lib/mixins/action_support.js should pass ESLint\n\n');
|
67034
67310
|
});
|
67035
67311
|
|
67036
|
-
QUnit.module('ESLint | ember-views/mixins/child_views_support.js');
|
67312
|
+
QUnit.module('ESLint | ember-views/lib/mixins/child_views_support.js');
|
67037
67313
|
QUnit.test('should pass ESLint', function(assert) {
|
67038
67314
|
assert.expect(1);
|
67039
|
-
assert.ok(true, 'ember-views/mixins/child_views_support.js should pass ESLint\n\n');
|
67315
|
+
assert.ok(true, 'ember-views/lib/mixins/child_views_support.js should pass ESLint\n\n');
|
67040
67316
|
});
|
67041
67317
|
|
67042
|
-
QUnit.module('ESLint | ember-views/mixins/class_names_support.js');
|
67318
|
+
QUnit.module('ESLint | ember-views/lib/mixins/class_names_support.js');
|
67043
67319
|
QUnit.test('should pass ESLint', function(assert) {
|
67044
67320
|
assert.expect(1);
|
67045
|
-
assert.ok(true, 'ember-views/mixins/class_names_support.js should pass ESLint\n\n');
|
67321
|
+
assert.ok(true, 'ember-views/lib/mixins/class_names_support.js should pass ESLint\n\n');
|
67046
67322
|
});
|
67047
67323
|
|
67048
|
-
QUnit.module('ESLint | ember-views/mixins/text_support.js');
|
67324
|
+
QUnit.module('ESLint | ember-views/lib/mixins/text_support.js');
|
67049
67325
|
QUnit.test('should pass ESLint', function(assert) {
|
67050
67326
|
assert.expect(1);
|
67051
|
-
assert.ok(true, 'ember-views/mixins/text_support.js should pass ESLint\n\n');
|
67327
|
+
assert.ok(true, 'ember-views/lib/mixins/text_support.js should pass ESLint\n\n');
|
67052
67328
|
});
|
67053
67329
|
|
67054
|
-
QUnit.module('ESLint | ember-views/mixins/view_state_support.js');
|
67330
|
+
QUnit.module('ESLint | ember-views/lib/mixins/view_state_support.js');
|
67055
67331
|
QUnit.test('should pass ESLint', function(assert) {
|
67056
67332
|
assert.expect(1);
|
67057
|
-
assert.ok(true, 'ember-views/mixins/view_state_support.js should pass ESLint\n\n');
|
67333
|
+
assert.ok(true, 'ember-views/lib/mixins/view_state_support.js should pass ESLint\n\n');
|
67058
67334
|
});
|
67059
67335
|
|
67060
|
-
QUnit.module('ESLint | ember-views/mixins/view_support.js');
|
67336
|
+
QUnit.module('ESLint | ember-views/lib/mixins/view_support.js');
|
67061
67337
|
QUnit.test('should pass ESLint', function(assert) {
|
67062
67338
|
assert.expect(1);
|
67063
|
-
assert.ok(true, 'ember-views/mixins/view_support.js should pass ESLint\n\n');
|
67339
|
+
assert.ok(true, 'ember-views/lib/mixins/view_support.js should pass ESLint\n\n');
|
67064
67340
|
});
|
67065
67341
|
|
67066
|
-
QUnit.module('ESLint | ember-views/system/action_manager.js');
|
67342
|
+
QUnit.module('ESLint | ember-views/lib/system/action_manager.js');
|
67067
67343
|
QUnit.test('should pass ESLint', function(assert) {
|
67068
67344
|
assert.expect(1);
|
67069
|
-
assert.ok(true, 'ember-views/system/action_manager.js should pass ESLint\n\n');
|
67345
|
+
assert.ok(true, 'ember-views/lib/system/action_manager.js should pass ESLint\n\n');
|
67070
67346
|
});
|
67071
67347
|
|
67072
|
-
QUnit.module('ESLint | ember-views/system/event_dispatcher.js');
|
67348
|
+
QUnit.module('ESLint | ember-views/lib/system/event_dispatcher.js');
|
67073
67349
|
QUnit.test('should pass ESLint', function(assert) {
|
67074
67350
|
assert.expect(1);
|
67075
|
-
assert.ok(true, 'ember-views/system/event_dispatcher.js should pass ESLint\n\n');
|
67351
|
+
assert.ok(true, 'ember-views/lib/system/event_dispatcher.js should pass ESLint\n\n');
|
67076
67352
|
});
|
67077
67353
|
|
67078
|
-
QUnit.module('ESLint | ember-views/system/ext.js');
|
67354
|
+
QUnit.module('ESLint | ember-views/lib/system/ext.js');
|
67079
67355
|
QUnit.test('should pass ESLint', function(assert) {
|
67080
67356
|
assert.expect(1);
|
67081
|
-
assert.ok(true, 'ember-views/system/ext.js should pass ESLint\n\n');
|
67357
|
+
assert.ok(true, 'ember-views/lib/system/ext.js should pass ESLint\n\n');
|
67082
67358
|
});
|
67083
67359
|
|
67084
|
-
QUnit.module('ESLint | ember-views/system/jquery.js');
|
67360
|
+
QUnit.module('ESLint | ember-views/lib/system/jquery.js');
|
67085
67361
|
QUnit.test('should pass ESLint', function(assert) {
|
67086
67362
|
assert.expect(1);
|
67087
|
-
assert.ok(true, 'ember-views/system/jquery.js should pass ESLint\n\n');
|
67363
|
+
assert.ok(true, 'ember-views/lib/system/jquery.js should pass ESLint\n\n');
|
67088
67364
|
});
|
67089
67365
|
|
67090
|
-
QUnit.module('ESLint | ember-views/system/lookup_partial.js');
|
67366
|
+
QUnit.module('ESLint | ember-views/lib/system/lookup_partial.js');
|
67091
67367
|
QUnit.test('should pass ESLint', function(assert) {
|
67092
67368
|
assert.expect(1);
|
67093
|
-
assert.ok(true, 'ember-views/system/lookup_partial.js should pass ESLint\n\n');
|
67369
|
+
assert.ok(true, 'ember-views/lib/system/lookup_partial.js should pass ESLint\n\n');
|
67094
67370
|
});
|
67095
67371
|
|
67096
|
-
QUnit.module('ESLint | ember-views/system/utils.js');
|
67372
|
+
QUnit.module('ESLint | ember-views/lib/system/utils.js');
|
67097
67373
|
QUnit.test('should pass ESLint', function(assert) {
|
67098
67374
|
assert.expect(1);
|
67099
|
-
assert.ok(true, 'ember-views/system/utils.js should pass ESLint\n\n');
|
67375
|
+
assert.ok(true, 'ember-views/lib/system/utils.js should pass ESLint\n\n');
|
67100
67376
|
});
|
67101
67377
|
|
67102
|
-
QUnit.module('ESLint | ember-views/utils/lookup-component.js');
|
67378
|
+
QUnit.module('ESLint | ember-views/lib/utils/lookup-component.js');
|
67103
67379
|
QUnit.test('should pass ESLint', function(assert) {
|
67104
67380
|
assert.expect(1);
|
67105
|
-
assert.ok(true, 'ember-views/utils/lookup-component.js should pass ESLint\n\n');
|
67381
|
+
assert.ok(true, 'ember-views/lib/utils/lookup-component.js should pass ESLint\n\n');
|
67106
67382
|
});
|
67107
67383
|
|
67108
|
-
QUnit.module('ESLint | ember-views/views/core_view.js');
|
67384
|
+
QUnit.module('ESLint | ember-views/lib/views/core_view.js');
|
67109
67385
|
QUnit.test('should pass ESLint', function(assert) {
|
67110
67386
|
assert.expect(1);
|
67111
|
-
assert.ok(true, 'ember-views/views/core_view.js should pass ESLint\n\n');
|
67387
|
+
assert.ok(true, 'ember-views/lib/views/core_view.js should pass ESLint\n\n');
|
67112
67388
|
});
|
67113
67389
|
|
67114
|
-
QUnit.module('ESLint | ember-views/views/states.js');
|
67390
|
+
QUnit.module('ESLint | ember-views/lib/views/states.js');
|
67115
67391
|
QUnit.test('should pass ESLint', function(assert) {
|
67116
67392
|
assert.expect(1);
|
67117
|
-
assert.ok(true, 'ember-views/views/states.js should pass ESLint\n\n');
|
67393
|
+
assert.ok(true, 'ember-views/lib/views/states.js should pass ESLint\n\n');
|
67118
67394
|
});
|
67119
67395
|
|
67120
|
-
QUnit.module('ESLint | ember-views/views/states/default.js');
|
67396
|
+
QUnit.module('ESLint | ember-views/lib/views/states/default.js');
|
67121
67397
|
QUnit.test('should pass ESLint', function(assert) {
|
67122
67398
|
assert.expect(1);
|
67123
|
-
assert.ok(true, 'ember-views/views/states/default.js should pass ESLint\n\n');
|
67399
|
+
assert.ok(true, 'ember-views/lib/views/states/default.js should pass ESLint\n\n');
|
67124
67400
|
});
|
67125
67401
|
|
67126
|
-
QUnit.module('ESLint | ember-views/views/states/destroying.js');
|
67402
|
+
QUnit.module('ESLint | ember-views/lib/views/states/destroying.js');
|
67127
67403
|
QUnit.test('should pass ESLint', function(assert) {
|
67128
67404
|
assert.expect(1);
|
67129
|
-
assert.ok(true, 'ember-views/views/states/destroying.js should pass ESLint\n\n');
|
67405
|
+
assert.ok(true, 'ember-views/lib/views/states/destroying.js should pass ESLint\n\n');
|
67130
67406
|
});
|
67131
67407
|
|
67132
|
-
QUnit.module('ESLint | ember-views/views/states/has_element.js');
|
67408
|
+
QUnit.module('ESLint | ember-views/lib/views/states/has_element.js');
|
67133
67409
|
QUnit.test('should pass ESLint', function(assert) {
|
67134
67410
|
assert.expect(1);
|
67135
|
-
assert.ok(true, 'ember-views/views/states/has_element.js should pass ESLint\n\n');
|
67411
|
+
assert.ok(true, 'ember-views/lib/views/states/has_element.js should pass ESLint\n\n');
|
67136
67412
|
});
|
67137
67413
|
|
67138
|
-
QUnit.module('ESLint | ember-views/views/states/in_dom.js');
|
67414
|
+
QUnit.module('ESLint | ember-views/lib/views/states/in_dom.js');
|
67139
67415
|
QUnit.test('should pass ESLint', function(assert) {
|
67140
67416
|
assert.expect(1);
|
67141
|
-
assert.ok(true, 'ember-views/views/states/in_dom.js should pass ESLint\n\n');
|
67417
|
+
assert.ok(true, 'ember-views/lib/views/states/in_dom.js should pass ESLint\n\n');
|
67142
67418
|
});
|
67143
67419
|
|
67144
|
-
QUnit.module('ESLint | ember-views/views/states/pre_render.js');
|
67420
|
+
QUnit.module('ESLint | ember-views/lib/views/states/pre_render.js');
|
67145
67421
|
QUnit.test('should pass ESLint', function(assert) {
|
67146
67422
|
assert.expect(1);
|
67147
|
-
assert.ok(true, 'ember-views/views/states/pre_render.js should pass ESLint\n\n');
|
67423
|
+
assert.ok(true, 'ember-views/lib/views/states/pre_render.js should pass ESLint\n\n');
|
67148
67424
|
});
|
67149
67425
|
|
67150
|
-
QUnit.module('ESLint | ember/index.js');
|
67426
|
+
QUnit.module('ESLint | ember/lib/index.js');
|
67151
67427
|
QUnit.test('should pass ESLint', function(assert) {
|
67152
67428
|
assert.expect(1);
|
67153
|
-
assert.ok(true, 'ember/index.js should pass ESLint\n\n');
|
67429
|
+
assert.ok(true, 'ember/lib/index.js should pass ESLint\n\n');
|
67154
67430
|
});
|
67155
67431
|
|
67156
67432
|
enifed('ember/tests/application_lifecycle_test', ['ember-babel', 'internal-test-helpers', 'ember-application', 'ember-routing', 'ember-glimmer'], function (_emberBabel, _internalTestHelpers, _emberApplication, _emberRouting, _emberGlimmer) {
|
@@ -69737,24 +70013,14 @@ enifed('ember/tests/helpers/link_to_test', ['ember-babel', 'ember-console', 'int
|
|
69737
70013
|
|
69738
70014
|
function _class5() {
|
69739
70015
|
(0, _emberBabel.classCallCheck)(this, _class5);
|
69740
|
-
|
69741
|
-
var _this8 = (0, _emberBabel.possibleConstructorReturn)(this, _ApplicationTestCase6.call(this));
|
69742
|
-
|
69743
|
-
_this8._oldWarn = _emberConsole.default.warn;
|
69744
|
-
_this8.warnCalled = false;
|
69745
|
-
_emberConsole.default.warn = function () {
|
69746
|
-
return _this8.warnCalled = true;
|
69747
|
-
};
|
69748
|
-
return _this8;
|
70016
|
+
return (0, _emberBabel.possibleConstructorReturn)(this, _ApplicationTestCase6.apply(this, arguments));
|
69749
70017
|
}
|
69750
70018
|
|
69751
|
-
_class5.prototype.teardown = function teardown() {
|
69752
|
-
_emberConsole.default.warn = this._oldWarn;
|
69753
|
-
_ApplicationTestCase6.prototype.teardown.call(this);
|
69754
|
-
};
|
69755
|
-
|
69756
70019
|
_class5.prototype['@test link-to with null/undefined dynamic parameters are put in a loading state'] = function (assert) {
|
70020
|
+
var _this9 = this;
|
70021
|
+
|
69757
70022
|
assert.expect(19);
|
70023
|
+
var warningMessage = 'This link-to is in an inactive loading state because at least one of its parameters presently has a null/undefined value, or the provided route name is invalid.';
|
69758
70024
|
|
69759
70025
|
this.router.map(function () {
|
69760
70026
|
this.route('thing', { path: '/thing/:thing_id' });
|
@@ -69794,9 +70060,9 @@ enifed('ember/tests/helpers/link_to_test', ['ember-babel', 'ember-console', 'int
|
|
69794
70060
|
assertLinkStatus(contextLink);
|
69795
70061
|
assertLinkStatus(staticLink);
|
69796
70062
|
|
69797
|
-
|
69798
|
-
|
69799
|
-
|
70063
|
+
expectWarning(function () {
|
70064
|
+
_this9.click(contextLink);
|
70065
|
+
}, warningMessage);
|
69800
70066
|
|
69801
70067
|
// Set the destinationRoute (context is still null).
|
69802
70068
|
this.runTask(function () {
|
@@ -69828,9 +70094,9 @@ enifed('ember/tests/helpers/link_to_test', ['ember-babel', 'ember-console', 'int
|
|
69828
70094
|
});
|
69829
70095
|
assertLinkStatus(contextLink);
|
69830
70096
|
|
69831
|
-
|
69832
|
-
|
69833
|
-
|
70097
|
+
expectWarning(function () {
|
70098
|
+
_this9.click(staticLink);
|
70099
|
+
}, warningMessage);
|
69834
70100
|
|
69835
70101
|
this.runTask(function () {
|
69836
70102
|
return controller.set('secondRoute', 'about');
|
@@ -69853,23 +70119,23 @@ enifed('ember/tests/helpers/link_to_test', ['ember-babel', 'ember-console', 'int
|
|
69853
70119
|
}
|
69854
70120
|
|
69855
70121
|
_class6.prototype['@test the {{link-to}} helper throws a useful error if you invoke it wrong'] = function (assert) {
|
69856
|
-
var
|
70122
|
+
var _this11 = this;
|
69857
70123
|
|
69858
70124
|
assert.expect(1);
|
69859
70125
|
|
69860
70126
|
assert.throws(function () {
|
69861
|
-
|
69862
|
-
|
70127
|
+
_this11.runTask(function () {
|
70128
|
+
_this11.createApplication();
|
69863
70129
|
|
69864
|
-
|
70130
|
+
_this11.add('router:main', _emberRouting.Router.extend({
|
69865
70131
|
location: 'none'
|
69866
70132
|
}));
|
69867
70133
|
|
69868
|
-
|
70134
|
+
_this11.router.map(function () {
|
69869
70135
|
this.route('post', { path: 'post/:post_id' });
|
69870
70136
|
});
|
69871
70137
|
|
69872
|
-
|
70138
|
+
_this11.addTemplate('application', '{{#link-to \'post\'}}Post{{/link-to}}');
|
69873
70139
|
});
|
69874
70140
|
}, /(You attempted to define a `\{\{link-to "post"\}\}` but did not pass the parameters required for generating its dynamic segments.|You must provide param `post_id` to `generate`)/);
|
69875
70141
|
};
|
@@ -78512,9 +78778,31 @@ enifed('ember/tests/routing/router_service_test/transitionTo_test', ['ember-babe
|
|
78512
78778
|
});
|
78513
78779
|
};
|
78514
78780
|
|
78515
|
-
_class.prototype['@test RouterService#transitionTo
|
78781
|
+
_class.prototype['@test RouterService#transitionTo passing only queryParams works'] = function testRouterServiceTransitionToPassingOnlyQueryParamsWorks(assert) {
|
78516
78782
|
var _this10 = this;
|
78517
78783
|
|
78784
|
+
assert.expect(2);
|
78785
|
+
|
78786
|
+
this.add('controller:parent.child', _emberRuntime.Controller.extend({
|
78787
|
+
queryParams: ['sort']
|
78788
|
+
}));
|
78789
|
+
|
78790
|
+
var queryParams = this.buildQueryParams({ sort: 'DESC' });
|
78791
|
+
|
78792
|
+
return this.visit('/').then(function () {
|
78793
|
+
return _this10.routerService.transitionTo('parent.child');
|
78794
|
+
}).then(function () {
|
78795
|
+
assert.equal(_this10.routerService.get('currentURL'), '/child');
|
78796
|
+
}).then(function () {
|
78797
|
+
return _this10.routerService.transitionTo(queryParams);
|
78798
|
+
}).then(function () {
|
78799
|
+
assert.equal(_this10.routerService.get('currentURL'), '/child?sort=DESC');
|
78800
|
+
});
|
78801
|
+
};
|
78802
|
+
|
78803
|
+
_class.prototype['@test RouterService#transitionTo with unspecified query params'] = function testRouterServiceTransitionToWithUnspecifiedQueryParams(assert) {
|
78804
|
+
var _this11 = this;
|
78805
|
+
|
78518
78806
|
assert.expect(1);
|
78519
78807
|
|
78520
78808
|
this.add('controller:parent.child', _emberRuntime.Controller.extend({
|
@@ -78527,14 +78815,14 @@ enifed('ember/tests/routing/router_service_test/transitionTo_test', ['ember-babe
|
|
78527
78815
|
var queryParams = this.buildQueryParams({ sort: 'ASC' });
|
78528
78816
|
|
78529
78817
|
return this.visit('/').then(function () {
|
78530
|
-
return
|
78818
|
+
return _this11.routerService.transitionTo('parent.child', queryParams);
|
78531
78819
|
}).then(function () {
|
78532
|
-
assert.equal(
|
78820
|
+
assert.equal(_this11.routerService.get('currentURL'), '/child?sort=ASC');
|
78533
78821
|
});
|
78534
78822
|
};
|
78535
78823
|
|
78536
78824
|
_class.prototype['@test RouterService#transitionTo with aliased query params uses the original provided key'] = function testRouterServiceTransitionToWithAliasedQueryParamsUsesTheOriginalProvidedKey(assert) {
|
78537
|
-
var
|
78825
|
+
var _this12 = this;
|
78538
78826
|
|
78539
78827
|
assert.expect(1);
|
78540
78828
|
|
@@ -78548,14 +78836,14 @@ enifed('ember/tests/routing/router_service_test/transitionTo_test', ['ember-babe
|
|
78548
78836
|
var queryParams = this.buildQueryParams({ url_sort: 'ASC' });
|
78549
78837
|
|
78550
78838
|
return this.visit('/').then(function () {
|
78551
|
-
return
|
78839
|
+
return _this12.routerService.transitionTo('parent.child', queryParams);
|
78552
78840
|
}).then(function () {
|
78553
|
-
assert.equal(
|
78841
|
+
assert.equal(_this12.routerService.get('currentURL'), '/child?url_sort=ASC');
|
78554
78842
|
});
|
78555
78843
|
};
|
78556
78844
|
|
78557
78845
|
_class.prototype['@test RouterService#transitionTo with aliased query params uses the original provided key when controller property name'] = function testRouterServiceTransitionToWithAliasedQueryParamsUsesTheOriginalProvidedKeyWhenControllerPropertyName(assert) {
|
78558
|
-
var
|
78846
|
+
var _this13 = this;
|
78559
78847
|
|
78560
78848
|
assert.expect(1);
|
78561
78849
|
|
@@ -78570,7 +78858,7 @@ enifed('ember/tests/routing/router_service_test/transitionTo_test', ['ember-babe
|
|
78570
78858
|
|
78571
78859
|
return this.visit('/').then(function () {
|
78572
78860
|
expectAssertion(function () {
|
78573
|
-
return
|
78861
|
+
return _this13.routerService.transitionTo('parent.child', queryParams);
|
78574
78862
|
}, 'You passed the `cont_sort` query parameter during a transition into parent.child, please update to url_sort');
|
78575
78863
|
});
|
78576
78864
|
};
|
@@ -79977,6 +80265,18 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
79977
80265
|
assert.ok(true, 'expand_properties.js should pass ESLint\n\n');
|
79978
80266
|
});
|
79979
80267
|
|
80268
|
+
QUnit.module('ESLint | external-helpers/lib/external-helpers-dev.js');
|
80269
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80270
|
+
assert.expect(1);
|
80271
|
+
assert.ok(true, 'external-helpers/lib/external-helpers-dev.js should pass ESLint\n\n');
|
80272
|
+
});
|
80273
|
+
|
80274
|
+
QUnit.module('ESLint | external-helpers/lib/external-helpers-prod.js');
|
80275
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80276
|
+
assert.expect(1);
|
80277
|
+
assert.ok(true, 'external-helpers/lib/external-helpers-prod.js should pass ESLint\n\n');
|
80278
|
+
});
|
80279
|
+
|
79980
80280
|
QUnit.module('ESLint | get_properties.js');
|
79981
80281
|
QUnit.test('should pass ESLint', function(assert) {
|
79982
80282
|
assert.expect(1);
|
@@ -80036,12 +80336,6 @@ enifed('internal-test-helpers/apply-mixins', ['exports', 'ember-utils'], functio
|
|
80036
80336
|
return TestClass;
|
80037
80337
|
}
|
80038
80338
|
});
|
80039
|
-
QUnit.module('ESLint | internal-test-helpers/apply-mixins.js');
|
80040
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80041
|
-
assert.expect(1);
|
80042
|
-
assert.ok(true, 'internal-test-helpers/apply-mixins.js should pass ESLint\n\n');
|
80043
|
-
});
|
80044
|
-
|
80045
80339
|
enifed('internal-test-helpers/build-owner', ['exports', 'container', 'ember-routing', 'ember-application', 'ember-runtime'], function (exports, _container, _emberRouting, _emberApplication, _emberRuntime) {
|
80046
80340
|
'use strict';
|
80047
80341
|
|
@@ -80083,12 +80377,6 @@ enifed('internal-test-helpers/build-owner', ['exports', 'container', 'ember-rout
|
|
80083
80377
|
return owner;
|
80084
80378
|
}
|
80085
80379
|
});
|
80086
|
-
QUnit.module('ESLint | internal-test-helpers/build-owner.js');
|
80087
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80088
|
-
assert.expect(1);
|
80089
|
-
assert.ok(true, 'internal-test-helpers/build-owner.js should pass ESLint\n\n');
|
80090
|
-
});
|
80091
|
-
|
80092
80380
|
enifed('internal-test-helpers/confirm-export', ['exports', 'require'], function (exports, _require2) {
|
80093
80381
|
'use strict';
|
80094
80382
|
|
@@ -80128,12 +80416,6 @@ enifed('internal-test-helpers/confirm-export', ['exports', 'require'], function
|
|
80128
80416
|
}
|
80129
80417
|
}
|
80130
80418
|
});
|
80131
|
-
QUnit.module('ESLint | internal-test-helpers/confirm-export.js');
|
80132
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80133
|
-
assert.expect(1);
|
80134
|
-
assert.ok(true, 'internal-test-helpers/confirm-export.js should pass ESLint\n\n');
|
80135
|
-
});
|
80136
|
-
|
80137
80419
|
enifed('internal-test-helpers/equal-inner-html', ['exports'], function (exports) {
|
80138
80420
|
'use strict';
|
80139
80421
|
|
@@ -80168,12 +80450,6 @@ enifed('internal-test-helpers/equal-inner-html', ['exports'], function (exports)
|
|
80168
80450
|
QUnit.push(actualHTML === html, actualHTML, html);
|
80169
80451
|
}
|
80170
80452
|
});
|
80171
|
-
QUnit.module('ESLint | internal-test-helpers/equal-inner-html.js');
|
80172
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80173
|
-
assert.expect(1);
|
80174
|
-
assert.ok(true, 'internal-test-helpers/equal-inner-html.js should pass ESLint\n\n');
|
80175
|
-
});
|
80176
|
-
|
80177
80453
|
enifed('internal-test-helpers/equal-tokens', ['exports', 'simple-html-tokenizer'], function (exports, _simpleHtmlTokenizer) {
|
80178
80454
|
'use strict';
|
80179
80455
|
|
@@ -80228,12 +80504,6 @@ enifed('internal-test-helpers/equal-tokens', ['exports', 'simple-html-tokenizer'
|
|
80228
80504
|
}
|
80229
80505
|
}
|
80230
80506
|
});
|
80231
|
-
QUnit.module('ESLint | internal-test-helpers/equal-tokens.js');
|
80232
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80233
|
-
assert.expect(1);
|
80234
|
-
assert.ok(true, 'internal-test-helpers/equal-tokens.js should pass ESLint\n\n');
|
80235
|
-
});
|
80236
|
-
|
80237
80507
|
enifed('internal-test-helpers/factory', ['exports'], function (exports) {
|
80238
80508
|
'use strict';
|
80239
80509
|
|
@@ -80304,12 +80574,6 @@ enifed('internal-test-helpers/factory', ['exports'], function (exports) {
|
|
80304
80574
|
}
|
80305
80575
|
}
|
80306
80576
|
});
|
80307
|
-
QUnit.module('ESLint | internal-test-helpers/factory.js');
|
80308
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80309
|
-
assert.expect(1);
|
80310
|
-
assert.ok(true, 'internal-test-helpers/factory.js should pass ESLint\n\n');
|
80311
|
-
});
|
80312
|
-
|
80313
80577
|
enifed('internal-test-helpers/index', ['exports', 'internal-test-helpers/factory', 'internal-test-helpers/build-owner', 'internal-test-helpers/confirm-export', 'internal-test-helpers/equal-inner-html', 'internal-test-helpers/equal-tokens', 'internal-test-helpers/module-for', 'internal-test-helpers/strip', 'internal-test-helpers/apply-mixins', 'internal-test-helpers/matchers', 'internal-test-helpers/run', 'internal-test-helpers/test-groups', 'internal-test-helpers/test-cases/abstract', 'internal-test-helpers/test-cases/abstract-application', 'internal-test-helpers/test-cases/application', 'internal-test-helpers/test-cases/query-param', 'internal-test-helpers/test-cases/abstract-rendering', 'internal-test-helpers/test-cases/rendering', 'internal-test-helpers/test-cases/router', 'internal-test-helpers/test-cases/autoboot-application', 'internal-test-helpers/test-cases/default-resolver-application', 'internal-test-helpers/test-resolver'], function (exports, _factory, _buildOwner, _confirmExport, _equalInnerHtml, _equalTokens, _moduleFor, _strip, _applyMixins, _matchers, _run, _testGroups, _abstract, _abstractApplication, _application, _queryParam, _abstractRendering, _rendering, _router, _autobootApplication, _defaultResolverApplication, _testResolver) {
|
80314
80578
|
'use strict';
|
80315
80579
|
|
@@ -80476,10 +80740,142 @@ enifed('internal-test-helpers/index', ['exports', 'internal-test-helpers/factory
|
|
80476
80740
|
}
|
80477
80741
|
});
|
80478
80742
|
});
|
80479
|
-
QUnit.module('ESLint | internal-test-helpers/
|
80743
|
+
QUnit.module('ESLint | internal-test-helpers/lib/apply-mixins.js');
|
80744
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80745
|
+
assert.expect(1);
|
80746
|
+
assert.ok(true, 'internal-test-helpers/lib/apply-mixins.js should pass ESLint\n\n');
|
80747
|
+
});
|
80748
|
+
|
80749
|
+
QUnit.module('ESLint | internal-test-helpers/lib/build-owner.js');
|
80480
80750
|
QUnit.test('should pass ESLint', function(assert) {
|
80481
80751
|
assert.expect(1);
|
80482
|
-
assert.ok(true, 'internal-test-helpers/
|
80752
|
+
assert.ok(true, 'internal-test-helpers/lib/build-owner.js should pass ESLint\n\n');
|
80753
|
+
});
|
80754
|
+
|
80755
|
+
QUnit.module('ESLint | internal-test-helpers/lib/confirm-export.js');
|
80756
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80757
|
+
assert.expect(1);
|
80758
|
+
assert.ok(true, 'internal-test-helpers/lib/confirm-export.js should pass ESLint\n\n');
|
80759
|
+
});
|
80760
|
+
|
80761
|
+
QUnit.module('ESLint | internal-test-helpers/lib/equal-inner-html.js');
|
80762
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80763
|
+
assert.expect(1);
|
80764
|
+
assert.ok(true, 'internal-test-helpers/lib/equal-inner-html.js should pass ESLint\n\n');
|
80765
|
+
});
|
80766
|
+
|
80767
|
+
QUnit.module('ESLint | internal-test-helpers/lib/equal-tokens.js');
|
80768
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80769
|
+
assert.expect(1);
|
80770
|
+
assert.ok(true, 'internal-test-helpers/lib/equal-tokens.js should pass ESLint\n\n');
|
80771
|
+
});
|
80772
|
+
|
80773
|
+
QUnit.module('ESLint | internal-test-helpers/lib/factory.js');
|
80774
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80775
|
+
assert.expect(1);
|
80776
|
+
assert.ok(true, 'internal-test-helpers/lib/factory.js should pass ESLint\n\n');
|
80777
|
+
});
|
80778
|
+
|
80779
|
+
QUnit.module('ESLint | internal-test-helpers/lib/index.js');
|
80780
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80781
|
+
assert.expect(1);
|
80782
|
+
assert.ok(true, 'internal-test-helpers/lib/index.js should pass ESLint\n\n');
|
80783
|
+
});
|
80784
|
+
|
80785
|
+
QUnit.module('ESLint | internal-test-helpers/lib/matchers.js');
|
80786
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80787
|
+
assert.expect(1);
|
80788
|
+
assert.ok(true, 'internal-test-helpers/lib/matchers.js should pass ESLint\n\n');
|
80789
|
+
});
|
80790
|
+
|
80791
|
+
QUnit.module('ESLint | internal-test-helpers/lib/module-for.js');
|
80792
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80793
|
+
assert.expect(1);
|
80794
|
+
assert.ok(true, 'internal-test-helpers/lib/module-for.js should pass ESLint\n\n');
|
80795
|
+
});
|
80796
|
+
|
80797
|
+
QUnit.module('ESLint | internal-test-helpers/lib/run.js');
|
80798
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80799
|
+
assert.expect(1);
|
80800
|
+
assert.ok(true, 'internal-test-helpers/lib/run.js should pass ESLint\n\n');
|
80801
|
+
});
|
80802
|
+
|
80803
|
+
QUnit.module('ESLint | internal-test-helpers/lib/strip.js');
|
80804
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80805
|
+
assert.expect(1);
|
80806
|
+
assert.ok(true, 'internal-test-helpers/lib/strip.js should pass ESLint\n\n');
|
80807
|
+
});
|
80808
|
+
|
80809
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-cases/abstract-application.js');
|
80810
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80811
|
+
assert.expect(1);
|
80812
|
+
assert.ok(true, 'internal-test-helpers/lib/test-cases/abstract-application.js should pass ESLint\n\n');
|
80813
|
+
});
|
80814
|
+
|
80815
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-cases/abstract-rendering.js');
|
80816
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80817
|
+
assert.expect(1);
|
80818
|
+
assert.ok(true, 'internal-test-helpers/lib/test-cases/abstract-rendering.js should pass ESLint\n\n');
|
80819
|
+
});
|
80820
|
+
|
80821
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-cases/abstract.js');
|
80822
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80823
|
+
assert.expect(1);
|
80824
|
+
assert.ok(true, 'internal-test-helpers/lib/test-cases/abstract.js should pass ESLint\n\n');
|
80825
|
+
});
|
80826
|
+
|
80827
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-cases/application.js');
|
80828
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80829
|
+
assert.expect(1);
|
80830
|
+
assert.ok(true, 'internal-test-helpers/lib/test-cases/application.js should pass ESLint\n\n');
|
80831
|
+
});
|
80832
|
+
|
80833
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-cases/autoboot-application.js');
|
80834
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80835
|
+
assert.expect(1);
|
80836
|
+
assert.ok(true, 'internal-test-helpers/lib/test-cases/autoboot-application.js should pass ESLint\n\n');
|
80837
|
+
});
|
80838
|
+
|
80839
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-cases/default-resolver-application.js');
|
80840
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80841
|
+
assert.expect(1);
|
80842
|
+
assert.ok(true, 'internal-test-helpers/lib/test-cases/default-resolver-application.js should pass ESLint\n\n');
|
80843
|
+
});
|
80844
|
+
|
80845
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-cases/query-param.js');
|
80846
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80847
|
+
assert.expect(1);
|
80848
|
+
assert.ok(true, 'internal-test-helpers/lib/test-cases/query-param.js should pass ESLint\n\n');
|
80849
|
+
});
|
80850
|
+
|
80851
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-cases/rendering.js');
|
80852
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80853
|
+
assert.expect(1);
|
80854
|
+
assert.ok(true, 'internal-test-helpers/lib/test-cases/rendering.js should pass ESLint\n\n');
|
80855
|
+
});
|
80856
|
+
|
80857
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-cases/router.js');
|
80858
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80859
|
+
assert.expect(1);
|
80860
|
+
assert.ok(true, 'internal-test-helpers/lib/test-cases/router.js should pass ESLint\n\n');
|
80861
|
+
});
|
80862
|
+
|
80863
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-cases/test-resolver-application.js');
|
80864
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80865
|
+
assert.expect(1);
|
80866
|
+
assert.ok(true, 'internal-test-helpers/lib/test-cases/test-resolver-application.js should pass ESLint\n\n');
|
80867
|
+
});
|
80868
|
+
|
80869
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-groups.js');
|
80870
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80871
|
+
assert.expect(1);
|
80872
|
+
assert.ok(true, 'internal-test-helpers/lib/test-groups.js should pass ESLint\n\n');
|
80873
|
+
});
|
80874
|
+
|
80875
|
+
QUnit.module('ESLint | internal-test-helpers/lib/test-resolver.js');
|
80876
|
+
QUnit.test('should pass ESLint', function(assert) {
|
80877
|
+
assert.expect(1);
|
80878
|
+
assert.ok(true, 'internal-test-helpers/lib/test-resolver.js should pass ESLint\n\n');
|
80483
80879
|
});
|
80484
80880
|
|
80485
80881
|
enifed('internal-test-helpers/matchers', ['exports'], function (exports) {
|
@@ -80594,12 +80990,6 @@ enifed('internal-test-helpers/matchers', ['exports'], function (exports) {
|
|
80594
80990
|
}
|
80595
80991
|
}
|
80596
80992
|
});
|
80597
|
-
QUnit.module('ESLint | internal-test-helpers/matchers.js');
|
80598
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80599
|
-
assert.expect(1);
|
80600
|
-
assert.ok(true, 'internal-test-helpers/matchers.js should pass ESLint\n\n');
|
80601
|
-
});
|
80602
|
-
|
80603
80993
|
enifed('internal-test-helpers/module-for', ['exports', 'ember-runtime', 'internal-test-helpers/apply-mixins'], function (exports, _emberRuntime, _applyMixins) {
|
80604
80994
|
'use strict';
|
80605
80995
|
|
@@ -80645,12 +81035,6 @@ enifed('internal-test-helpers/module-for', ['exports', 'ember-runtime', 'interna
|
|
80645
81035
|
}
|
80646
81036
|
}
|
80647
81037
|
});
|
80648
|
-
QUnit.module('ESLint | internal-test-helpers/module-for.js');
|
80649
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80650
|
-
assert.expect(1);
|
80651
|
-
assert.ok(true, 'internal-test-helpers/module-for.js should pass ESLint\n\n');
|
80652
|
-
});
|
80653
|
-
|
80654
81038
|
enifed('internal-test-helpers/run', ['exports', 'ember-metal'], function (exports, _emberMetal) {
|
80655
81039
|
'use strict';
|
80656
81040
|
|
@@ -80666,12 +81050,6 @@ enifed('internal-test-helpers/run', ['exports', 'ember-metal'], function (export
|
|
80666
81050
|
}
|
80667
81051
|
}
|
80668
81052
|
});
|
80669
|
-
QUnit.module('ESLint | internal-test-helpers/run.js');
|
80670
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80671
|
-
assert.expect(1);
|
80672
|
-
assert.ok(true, 'internal-test-helpers/run.js should pass ESLint\n\n');
|
80673
|
-
});
|
80674
|
-
|
80675
81053
|
enifed('internal-test-helpers/strip', ['exports'], function (exports) {
|
80676
81054
|
'use strict';
|
80677
81055
|
|
@@ -80692,12 +81070,6 @@ enifed('internal-test-helpers/strip', ['exports'], function (exports) {
|
|
80692
81070
|
}).join('');
|
80693
81071
|
}
|
80694
81072
|
});
|
80695
|
-
QUnit.module('ESLint | internal-test-helpers/strip.js');
|
80696
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80697
|
-
assert.expect(1);
|
80698
|
-
assert.ok(true, 'internal-test-helpers/strip.js should pass ESLint\n\n');
|
80699
|
-
});
|
80700
|
-
|
80701
81073
|
enifed('internal-test-helpers/test-cases/abstract-application', ['exports', 'ember-babel', 'ember-template-compiler', 'internal-test-helpers/test-cases/abstract', 'ember-views', 'internal-test-helpers/run'], function (exports, _emberBabel, _emberTemplateCompiler, _abstract, _emberViews, _run) {
|
80702
81074
|
'use strict';
|
80703
81075
|
|
@@ -80747,12 +81119,6 @@ enifed('internal-test-helpers/test-cases/abstract-application', ['exports', 'emb
|
|
80747
81119
|
|
80748
81120
|
exports.default = AbstractApplicationTestCase;
|
80749
81121
|
});
|
80750
|
-
QUnit.module('ESLint | internal-test-helpers/test-cases/abstract-application.js');
|
80751
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80752
|
-
assert.expect(1);
|
80753
|
-
assert.ok(true, 'internal-test-helpers/test-cases/abstract-application.js should pass ESLint\n\n');
|
80754
|
-
});
|
80755
|
-
|
80756
81122
|
enifed('internal-test-helpers/test-cases/abstract-rendering', ['exports', 'ember-babel', 'ember-utils', 'ember-template-compiler', 'ember-views', 'ember-glimmer', 'internal-test-helpers/test-cases/abstract', 'internal-test-helpers/build-owner', 'internal-test-helpers/run'], function (exports, _emberBabel, _emberUtils, _emberTemplateCompiler, _emberViews, _emberGlimmer, _abstract, _buildOwner, _run) {
|
80757
81123
|
'use strict';
|
80758
81124
|
|
@@ -80912,12 +81278,6 @@ enifed('internal-test-helpers/test-cases/abstract-rendering', ['exports', 'ember
|
|
80912
81278
|
|
80913
81279
|
exports.default = AbstractRenderingTestCase;
|
80914
81280
|
});
|
80915
|
-
QUnit.module('ESLint | internal-test-helpers/test-cases/abstract-rendering.js');
|
80916
|
-
QUnit.test('should pass ESLint', function(assert) {
|
80917
|
-
assert.expect(1);
|
80918
|
-
assert.ok(true, 'internal-test-helpers/test-cases/abstract-rendering.js should pass ESLint\n\n');
|
80919
|
-
});
|
80920
|
-
|
80921
81281
|
enifed('internal-test-helpers/test-cases/abstract', ['exports', 'ember-babel', 'ember-utils', 'ember-metal', 'ember-views', 'internal-test-helpers/equal-inner-html', 'internal-test-helpers/equal-tokens', 'internal-test-helpers/matchers'], function (exports, _emberBabel, _emberUtils, _emberMetal, _emberViews, _equalInnerHtml, _equalTokens, _matchers) {
|
80922
81282
|
'use strict';
|
80923
81283
|
|
@@ -81101,12 +81461,6 @@ enifed('internal-test-helpers/test-cases/abstract', ['exports', 'ember-babel', '
|
|
81101
81461
|
|
81102
81462
|
exports.default = AbstractTestCase;
|
81103
81463
|
});
|
81104
|
-
QUnit.module('ESLint | internal-test-helpers/test-cases/abstract.js');
|
81105
|
-
QUnit.test('should pass ESLint', function(assert) {
|
81106
|
-
assert.expect(1);
|
81107
|
-
assert.ok(true, 'internal-test-helpers/test-cases/abstract.js should pass ESLint\n\n');
|
81108
|
-
});
|
81109
|
-
|
81110
81464
|
enifed('internal-test-helpers/test-cases/application', ['exports', 'ember-babel', 'internal-test-helpers/test-cases/test-resolver-application', 'ember-application', 'ember-routing', 'ember-utils', 'internal-test-helpers/run'], function (exports, _emberBabel, _testResolverApplication, _emberApplication, _emberRouting, _emberUtils, _run) {
|
81111
81465
|
'use strict';
|
81112
81466
|
|
@@ -81193,12 +81547,6 @@ enifed('internal-test-helpers/test-cases/application', ['exports', 'ember-babel'
|
|
81193
81547
|
|
81194
81548
|
exports.default = ApplicationTestCase;
|
81195
81549
|
});
|
81196
|
-
QUnit.module('ESLint | internal-test-helpers/test-cases/application.js');
|
81197
|
-
QUnit.test('should pass ESLint', function(assert) {
|
81198
|
-
assert.expect(1);
|
81199
|
-
assert.ok(true, 'internal-test-helpers/test-cases/application.js should pass ESLint\n\n');
|
81200
|
-
});
|
81201
|
-
|
81202
81550
|
enifed('internal-test-helpers/test-cases/autoboot-application', ['exports', 'ember-babel', 'internal-test-helpers/test-cases/test-resolver-application', 'internal-test-helpers/test-resolver', 'ember-application', 'ember-utils', 'ember-routing'], function (exports, _emberBabel, _testResolverApplication, _testResolver, _emberApplication, _emberUtils, _emberRouting) {
|
81203
81551
|
'use strict';
|
81204
81552
|
|
@@ -81243,12 +81591,6 @@ enifed('internal-test-helpers/test-cases/autoboot-application', ['exports', 'emb
|
|
81243
81591
|
|
81244
81592
|
exports.default = AutobootApplicationTestCase;
|
81245
81593
|
});
|
81246
|
-
QUnit.module('ESLint | internal-test-helpers/test-cases/autoboot-application.js');
|
81247
|
-
QUnit.test('should pass ESLint', function(assert) {
|
81248
|
-
assert.expect(1);
|
81249
|
-
assert.ok(true, 'internal-test-helpers/test-cases/autoboot-application.js should pass ESLint\n\n');
|
81250
|
-
});
|
81251
|
-
|
81252
81594
|
enifed('internal-test-helpers/test-cases/default-resolver-application', ['exports', 'ember-babel', 'internal-test-helpers/test-cases/abstract-application', 'ember-application', 'ember-glimmer', 'ember-utils', 'internal-test-helpers/run', 'ember-routing'], function (exports, _emberBabel, _abstractApplication, _emberApplication, _emberGlimmer, _emberUtils, _run, _emberRouting) {
|
81253
81595
|
'use strict';
|
81254
81596
|
|
@@ -81327,12 +81669,6 @@ enifed('internal-test-helpers/test-cases/default-resolver-application', ['export
|
|
81327
81669
|
|
81328
81670
|
exports.default = ApplicationTestCase;
|
81329
81671
|
});
|
81330
|
-
QUnit.module('ESLint | internal-test-helpers/test-cases/default-resolver-application.js');
|
81331
|
-
QUnit.test('should pass ESLint', function(assert) {
|
81332
|
-
assert.expect(1);
|
81333
|
-
assert.ok(true, 'internal-test-helpers/test-cases/default-resolver-application.js should pass ESLint\n\n');
|
81334
|
-
});
|
81335
|
-
|
81336
81672
|
enifed('internal-test-helpers/test-cases/query-param', ['exports', 'ember-babel', 'ember-runtime', 'ember-routing', 'ember-metal', 'internal-test-helpers/test-cases/application'], function (exports, _emberBabel, _emberRuntime, _emberRouting, _emberMetal, _application) {
|
81337
81673
|
'use strict';
|
81338
81674
|
|
@@ -81442,12 +81778,6 @@ enifed('internal-test-helpers/test-cases/query-param', ['exports', 'ember-babel'
|
|
81442
81778
|
|
81443
81779
|
exports.default = QueryParamTestCase;
|
81444
81780
|
});
|
81445
|
-
QUnit.module('ESLint | internal-test-helpers/test-cases/query-param.js');
|
81446
|
-
QUnit.test('should pass ESLint', function(assert) {
|
81447
|
-
assert.expect(1);
|
81448
|
-
assert.ok(true, 'internal-test-helpers/test-cases/query-param.js should pass ESLint\n\n');
|
81449
|
-
});
|
81450
|
-
|
81451
81781
|
enifed('internal-test-helpers/test-cases/rendering', ['exports', 'ember-babel', 'ember-views', 'internal-test-helpers/test-cases/abstract-rendering'], function (exports, _emberBabel, _emberViews, _abstractRendering) {
|
81452
81782
|
'use strict';
|
81453
81783
|
|
@@ -81474,12 +81804,6 @@ enifed('internal-test-helpers/test-cases/rendering', ['exports', 'ember-babel',
|
|
81474
81804
|
|
81475
81805
|
exports.default = RenderingTestCase;
|
81476
81806
|
});
|
81477
|
-
QUnit.module('ESLint | internal-test-helpers/test-cases/rendering.js');
|
81478
|
-
QUnit.test('should pass ESLint', function(assert) {
|
81479
|
-
assert.expect(1);
|
81480
|
-
assert.ok(true, 'internal-test-helpers/test-cases/rendering.js should pass ESLint\n\n');
|
81481
|
-
});
|
81482
|
-
|
81483
81807
|
enifed('internal-test-helpers/test-cases/router', ['exports', 'ember-babel', 'internal-test-helpers/test-cases/application'], function (exports, _emberBabel, _application) {
|
81484
81808
|
'use strict';
|
81485
81809
|
|
@@ -81519,12 +81843,6 @@ enifed('internal-test-helpers/test-cases/router', ['exports', 'ember-babel', 'in
|
|
81519
81843
|
|
81520
81844
|
exports.default = RouterTestCase;
|
81521
81845
|
});
|
81522
|
-
QUnit.module('ESLint | internal-test-helpers/test-cases/router.js');
|
81523
|
-
QUnit.test('should pass ESLint', function(assert) {
|
81524
|
-
assert.expect(1);
|
81525
|
-
assert.ok(true, 'internal-test-helpers/test-cases/router.js should pass ESLint\n\n');
|
81526
|
-
});
|
81527
|
-
|
81528
81846
|
enifed('internal-test-helpers/test-cases/test-resolver-application', ['exports', 'ember-babel', 'internal-test-helpers/test-cases/abstract-application', 'internal-test-helpers/test-resolver', 'ember-utils'], function (exports, _emberBabel, _abstractApplication, _testResolver, _emberUtils) {
|
81529
81847
|
'use strict';
|
81530
81848
|
|
@@ -81576,12 +81894,6 @@ enifed('internal-test-helpers/test-cases/test-resolver-application', ['exports',
|
|
81576
81894
|
|
81577
81895
|
exports.default = TestResolverApplicationTestCase;
|
81578
81896
|
});
|
81579
|
-
QUnit.module('ESLint | internal-test-helpers/test-cases/test-resolver-application.js');
|
81580
|
-
QUnit.test('should pass ESLint', function(assert) {
|
81581
|
-
assert.expect(1);
|
81582
|
-
assert.ok(true, 'internal-test-helpers/test-cases/test-resolver-application.js should pass ESLint\n\n');
|
81583
|
-
});
|
81584
|
-
|
81585
81897
|
enifed('internal-test-helpers/test-groups', ['exports', 'ember-environment', 'ember-metal'], function (exports, _emberEnvironment, _emberMetal) {
|
81586
81898
|
'use strict';
|
81587
81899
|
|
@@ -81662,12 +81974,6 @@ enifed('internal-test-helpers/test-groups', ['exports', 'ember-environment', 'em
|
|
81662
81974
|
});
|
81663
81975
|
}
|
81664
81976
|
});
|
81665
|
-
QUnit.module('ESLint | internal-test-helpers/test-groups.js');
|
81666
|
-
QUnit.test('should pass ESLint', function(assert) {
|
81667
|
-
assert.expect(1);
|
81668
|
-
assert.ok(true, 'internal-test-helpers/test-groups.js should pass ESLint\n\n');
|
81669
|
-
});
|
81670
|
-
|
81671
81977
|
enifed('internal-test-helpers/test-resolver', ['exports', 'ember-babel', 'ember-template-compiler'], function (exports, _emberBabel, _emberTemplateCompiler) {
|
81672
81978
|
'use strict';
|
81673
81979
|
|
@@ -81730,12 +82036,6 @@ enifed('internal-test-helpers/test-resolver', ['exports', 'ember-babel', 'ember-
|
|
81730
82036
|
|
81731
82037
|
exports.ModuleBasedResolver = ModuleBasedResolver;
|
81732
82038
|
});
|
81733
|
-
QUnit.module('ESLint | internal-test-helpers/test-resolver.js');
|
81734
|
-
QUnit.test('should pass ESLint', function(assert) {
|
81735
|
-
assert.expect(1);
|
81736
|
-
assert.ok(true, 'internal-test-helpers/test-resolver.js should pass ESLint\n\n');
|
81737
|
-
});
|
81738
|
-
|
81739
82039
|
enifed('internal-test-helpers/tests/index-test', [], function () {
|
81740
82040
|
'use strict';
|
81741
82041
|
|
@@ -81787,6 +82087,12 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
81787
82087
|
assert.ok(true, 'libraries.js should pass ESLint\n\n');
|
81788
82088
|
});
|
81789
82089
|
|
82090
|
+
QUnit.module('ESLint | loader/lib/index.js');
|
82091
|
+
QUnit.test('should pass ESLint', function(assert) {
|
82092
|
+
assert.expect(1);
|
82093
|
+
assert.ok(true, 'loader/lib/index.js should pass ESLint\n\n');
|
82094
|
+
});
|
82095
|
+
|
81790
82096
|
QUnit.module('ESLint | map.js');
|
81791
82097
|
QUnit.test('should pass ESLint', function(assert) {
|
81792
82098
|
assert.expect(1);
|
@@ -81817,18 +82123,25 @@ QUnit.test('should pass ESLint', function(assert) {
|
|
81817
82123
|
assert.ok(true, 'mixin.js should pass ESLint\n\n');
|
81818
82124
|
});
|
81819
82125
|
|
82126
|
+
/*global enifed */
|
81820
82127
|
enifed('node-module', ['exports'], function(_exports) {
|
81821
82128
|
var IS_NODE = typeof module === 'object' && typeof module.require === 'function';
|
81822
82129
|
if (IS_NODE) {
|
81823
82130
|
_exports.require = module.require;
|
81824
82131
|
_exports.module = module;
|
81825
|
-
_exports.IS_NODE = IS_NODE
|
82132
|
+
_exports.IS_NODE = IS_NODE;
|
81826
82133
|
} else {
|
81827
82134
|
_exports.require = null;
|
81828
82135
|
_exports.module = null;
|
81829
|
-
_exports.IS_NODE = IS_NODE
|
82136
|
+
_exports.IS_NODE = IS_NODE;
|
81830
82137
|
}
|
81831
82138
|
});
|
82139
|
+
QUnit.module('ESLint | node-module/lib/node-module.js');
|
82140
|
+
QUnit.test('should pass ESLint', function(assert) {
|
82141
|
+
assert.expect(1);
|
82142
|
+
assert.ok(true, 'node-module/lib/node-module.js should pass ESLint\n\n');
|
82143
|
+
});
|
82144
|
+
|
81832
82145
|
QUnit.module('ESLint | observer.js');
|
81833
82146
|
QUnit.test('should pass ESLint', function(assert) {
|
81834
82147
|
assert.expect(1);
|