diff --git a/package-lock.json b/package-lock.json index 8064059..1cfb4d7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -53,7 +53,7 @@ "eslint-plugin-ember": "^11.0.6", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-qunit": "^6.2.0", + "eslint-plugin-qunit": "^7.3.1", "loader.js": "^4.7.0", "npm-run-all": "^4.1.5", "prettier": "^2.5.1", @@ -16193,16 +16193,16 @@ } }, "node_modules/eslint-plugin-qunit": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-qunit/-/eslint-plugin-qunit-6.2.0.tgz", - "integrity": "sha512-KvPmkIC2MHpfRxs/r8WUeeGkG6y+3qwSi2AZIBtjcM/YG6Z3k0GxW5Hbu3l7X0TDhljVCeBb9Q5puUkHzl83Mw==", + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-qunit/-/eslint-plugin-qunit-7.3.1.tgz", + "integrity": "sha512-L1yutkLqCgr70ZmMAbBKPvUOUwhKryZ0RaJKOzw72Bmn8no3JNBL9hhbX2aTvfZqYM/wLXIT0nICZiGrV4xVJw==", "dev": true, "dependencies": { "eslint-utils": "^3.0.0", "requireindex": "^1.2.0" }, "engines": { - "node": "10.x || 12.x || >=14.0.0" + "node": "12.x || 14.x || >=16.0.0" } }, "node_modules/eslint-plugin-qunit/node_modules/eslint-utils": { @@ -46806,9 +46806,9 @@ } }, "eslint-plugin-qunit": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-qunit/-/eslint-plugin-qunit-6.2.0.tgz", - "integrity": "sha512-KvPmkIC2MHpfRxs/r8WUeeGkG6y+3qwSi2AZIBtjcM/YG6Z3k0GxW5Hbu3l7X0TDhljVCeBb9Q5puUkHzl83Mw==", + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-qunit/-/eslint-plugin-qunit-7.3.1.tgz", + "integrity": "sha512-L1yutkLqCgr70ZmMAbBKPvUOUwhKryZ0RaJKOzw72Bmn8no3JNBL9hhbX2aTvfZqYM/wLXIT0nICZiGrV4xVJw==", "dev": true, "requires": { "eslint-utils": "^3.0.0", diff --git a/package.json b/package.json index 6686b6b..e99d0b4 100644 --- a/package.json +++ b/package.json @@ -76,7 +76,7 @@ "eslint-plugin-ember": "^11.0.6", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-qunit": "^6.2.0", + "eslint-plugin-qunit": "^7.3.1", "loader.js": "^4.7.0", "npm-run-all": "^4.1.5", "prettier": "^2.5.1", diff --git a/tests/integration/components/besluit-plugin-card-test.js b/tests/integration/components/besluit-plugin-card-test.js index e28a7e6..25f05a3 100644 --- a/tests/integration/components/besluit-plugin-card-test.js +++ b/tests/integration/components/besluit-plugin-card-test.js @@ -12,7 +12,7 @@ module('Integration | Component | besluit-plugin-card', function (hooks) { await render(hbs``); - assert.equal(this.element.textContent.trim(), ''); + assert.strictEqual(this.element.textContent.trim(), ''); // Template block usage: await render(hbs` @@ -21,6 +21,6 @@ module('Integration | Component | besluit-plugin-card', function (hooks) { `); - assert.equal(this.element.textContent.trim(), 'template block text'); + assert.strictEqual(this.element.textContent.trim(), 'template block text'); }); });