diff --git a/.circle.yml b/.circle.yml new file mode 100644 index 00000000..451d0097 --- /dev/null +++ b/.circle.yml @@ -0,0 +1 @@ +repo_token: $COVERALLS_REPO_TOKEN diff --git a/.eslintignore b/.eslintignore index 8de1c757..23276a47 100644 --- a/.eslintignore +++ b/.eslintignore @@ -12,8 +12,12 @@ tests/fixtures/**/* tmp/**/* vendor/**/* -app/router.js -public/assets/js/skrimps.js +# Generated files +index.js +testem.js +tests/test-helper.js +tests/dummy/* +tests/helpers/* # runs in Phantom, which lacks support for required ES2016 features tests/blanket-options.js diff --git a/,eslintrc.json b/.eslintrc.json similarity index 50% rename from ,eslintrc.json rename to .eslintrc.json index 956ebcf5..0981cfcf 100644 --- a/,eslintrc.json +++ b/.eslintrc.json @@ -5,11 +5,5 @@ ], "plugins": [ "dollarshaveclub" - ], - "globals": { - "Fingerprint": true, - "Flickity": true, - "Modernizr": false, - "Raven": true - } + ] } diff --git a/tests/unit/mixins/router-scroll-test.js b/tests/unit/mixins/router-scroll-test.js index 2da34785..06d0477f 100644 --- a/tests/unit/mixins/router-scroll-test.js +++ b/tests/unit/mixins/router-scroll-test.js @@ -5,8 +5,8 @@ import { module, test } from 'qunit'; module('Unit | Mixin | router scroll'); // Replace this with your real tests. -test('it works', function(assert) { - let RouterScrollObject = Ember.Object.extend(RouterScrollMixin); - let subject = RouterScrollObject.create(); +test('it works', (assert) => { + const RouterScrollObject = Ember.Object.extend(RouterScrollMixin); + const subject = RouterScrollObject.create(); assert.ok(subject); });