summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph (Sheogorath) Kern2019-01-21 23:16:22 +0100
committerGitHub2019-01-21 23:16:22 +0100
commitd69edd1defacb4f81936c7c428b71e43d1f1e22d (patch)
treec564c26d584c9b612160107003647b69aa810ec0
parent3a23bd7c050abccc2560540e84d83cda5124e9cd (diff)
parentbf229d91c62c147f8eee9f80bfff1f874da32b56 (diff)
Merge pull request #1123 from SISheogorath/fix/lintingTests
Add linting for tests
-rw-r--r--package.json2
-rw-r--r--test/letter-avatars.js16
2 files changed, 10 insertions, 8 deletions
diff --git a/package.json b/package.json
index f2811fe5..0231064f 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,7 @@
"license": "AGPL-3.0",
"scripts": {
"test": "npm run-script eslint && npm run-script jsonlint && mocha",
- "eslint": "node_modules/.bin/eslint lib public app.js",
+ "eslint": "node_modules/.bin/eslint lib public test app.js",
"jsonlint": "find . -not -path './node_modules/*' -type f -name '*.json' -o -type f -name '*.json.example' | while read json; do echo $json ; jq . $json; done",
"standard": "echo 'standard is no longer being used, use `npm run eslint` instead!' && exit 1",
"dev": "webpack --config webpack.dev.js --progress --colors --watch",
diff --git a/test/letter-avatars.js b/test/letter-avatars.js
index 4948dec0..16197f52 100644
--- a/test/letter-avatars.js
+++ b/test/letter-avatars.js
@@ -1,11 +1,13 @@
+/* eslint-env node, mocha */
+
'use strict'
-const assert = require('assert');
+const assert = require('assert')
const avatars = require('../lib/letter-avatars')
-describe('generateAvatarURL()', function() {
- it('should return correct urls', function() {
- assert.equal(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', true), 'https://www.gravatar.com/avatar/d41b5f3508cc3f31865566a47dd0336b?s=400');
- assert.equal(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', false), 'https://www.gravatar.com/avatar/d41b5f3508cc3f31865566a47dd0336b?s=96');
- });
-});
+describe('generateAvatarURL()', function () {
+ it('should return correct urls', function () {
+ assert.strictEqual(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', true), 'https://www.gravatar.com/avatar/d41b5f3508cc3f31865566a47dd0336b?s=400')
+ assert.strictEqual(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', false), 'https://www.gravatar.com/avatar/d41b5f3508cc3f31865566a47dd0336b?s=96')
+ })
+})