Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 77e763f

Browse files
committed
Fix PR Review Issues
1 parent cb660e4 commit 77e763f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ language: node_js
33
node_js:
44
# we recommend testing addons with the same minimum supported node version as Ember CLI
55
# so that your addon works for all apps
6-
- "4"
6+
- "8.10"
77

88
sudo: false
99
dist: trusty
@@ -36,7 +36,7 @@ matrix:
3636

3737
before_install:
3838
- npm config set spin false
39-
- npm install -g npm@4
39+
- npm install -g npm@8.10
4040
- npm --version
4141

4242
script:

config/ember-try.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ module.exports = {
6969
npm: {
7070
devDependencies: {}
7171
}
72-
} */
72+
}
7373
]
7474
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<h2 id="title">Welcome to Ember</h2>
22

3-
{{outlet}}
3+
{{outlet}}

tests/helpers/module-for-acceptance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function(name, options = {}) {
1414
},
1515

1616
afterEach() {
17-
let afterEach = options.afterEach && options.afterEach.apply(this, arguments);
17+
const afterEach = options.afterEach && options.afterEach.apply(this, arguments);
1818
return resolve(afterEach).then(() => destroyApp(this.application));
1919
}
2020
});

tests/helpers/start-app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function startApp(attrs) {
99
attributes = merge(attributes, attrs); // use defaults, but you can override;
1010

1111
return run(() => {
12-
let application = Application.create(attributes);
12+
const application = Application.create(attributes);
1313
application.setupForTesting();
1414
application.injectTestHelpers();
1515
return application;

0 commit comments

Comments
 (0)