Use es6 notation in tests

This commit is contained in:
rejas
2021-04-18 14:51:28 +02:00
parent 6eba8d681c
commit d736dd92be
23 changed files with 36 additions and 53 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ const colors = require("colors/safe");
describe("Utils", function () {
describe("colors", function () {
var colorsEnabled = colors.enabled;
const colorsEnabled = colors.enabled;
afterEach(function () {
colors.enabled = colorsEnabled;