Skip to content

Commit 2708278

Browse files
Merge pull request #2590 from mainmatter/renovate/eslint-plugin-qunit-8.x
chore(deps): update dependency eslint-plugin-qunit to v8
2 parents d177611 + a8d6d5b commit 2708278

File tree

8 files changed

+19
-16
lines changed

8 files changed

+19
-16
lines changed

.eslintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ module.exports = {
4242
'no-var': 'off',
4343
'prefer-template': 'off',
4444
'quotes': 'off',
45-
'semi': 'off'
45+
'semi': 'off',
46+
'qunit/require-expect': ['error', 'except-simple'],
4647
},
4748
overrides: [
4849
// node files

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
- test-esa
2525
- classic-test-app
2626
- test-app
27+
- ember-simple-auth
2728

2829
steps:
2930
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4

packages/classic-test-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"eslint-config-simplabs": "0.4.0",
5353
"eslint-plugin-ember": "11.11.1",
5454
"eslint-plugin-node": "11.1.0",
55-
"eslint-plugin-qunit": "7.3.4",
55+
"eslint-plugin-qunit": "8.0.0",
5656
"express": "4.18.2",
5757
"glob": "10.3.7",
5858
"handlebars": "4.7.8",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist/

packages/ember-simple-auth/src/session-stores/cookie.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import BaseStore from './base';
1010
import objectsAreEqual from '../utils/objects-are-equal';
1111
import { isTesting } from '@embroider/macros';
1212

13-
const persistingProperty = function (beforeSet = function () {}) {
13+
const persistingProperty = function(beforeSet = function() {}) {
1414
return computed({
1515
get(key) {
1616
return this.get(`_${key}`);
@@ -112,7 +112,7 @@ export default BaseStore.extend({
112112
@public
113113
*/
114114
_cookieName: 'ember_simple_auth-session',
115-
cookieName: persistingProperty(function () {
115+
cookieName: persistingProperty(function() {
116116
this._oldCookieName = this._cookieName;
117117
}),
118118

@@ -142,7 +142,7 @@ export default BaseStore.extend({
142142
@public
143143
*/
144144
_cookieExpirationTime: null,
145-
cookieExpirationTime: persistingProperty(function (key, value) {
145+
cookieExpirationTime: persistingProperty(function(key, value) {
146146
// When nulling expiry time on purpose, we need to clear the cached value.
147147
// Otherwise, `_calculateExpirationTime` will reuse it.
148148
if (isNone(value)) {

packages/test-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"eslint-config-simplabs": "0.4.0",
5757
"eslint-plugin-ember": "11.11.1",
5858
"eslint-plugin-node": "11.1.0",
59-
"eslint-plugin-qunit": "7.3.4",
59+
"eslint-plugin-qunit": "8.0.0",
6060
"express": "4.18.2",
6161
"fastboot-app-server": "4.1.1",
6262
"glob": "10.3.7",

packages/test-esa/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"eslint-config-simplabs": "0.4.0",
6161
"eslint-plugin-ember": "11.11.1",
6262
"eslint-plugin-node": "11.1.0",
63-
"eslint-plugin-qunit": "7.3.4",
63+
"eslint-plugin-qunit": "8.0.0",
6464
"express": "4.18.2",
6565
"glob": "10.3.7",
6666
"handlebars": "4.7.8",

pnpm-lock.yaml

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)