From 424fbee25e0fda17b1c1aff3ced178b05b32dba7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 13:54:47 +0000 Subject: [PATCH 1/2] chore(deps-dev): Bump prettier from 3.5.3 to 3.6.0 Bumps [prettier](https://github.com/prettier/prettier) from 3.5.3 to 3.6.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.5.3...3.6.0) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.6.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 25bd8d6..b3909da 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29,7 +29,7 @@ "sqlite3": "^5.1.7" }, "devDependencies": { - "prettier": "^3.5.3" + "prettier": "^3.6.0" } }, "node_modules/@azure/msal-common": { @@ -2849,9 +2849,9 @@ } }, "node_modules/prettier": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", - "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.0.tgz", + "integrity": "sha512-ujSB9uXHJKzM/2GBuE0hBOUgC77CN3Bnpqa+g80bkv3T3A93wL/xlzDATHhnhkzifz/UE2SNOvmbTz5hSkDlHw==", "dev": true, "license": "MIT", "bin": { diff --git a/package.json b/package.json index 68d2cd7..53b5466 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,6 @@ "sqlite3": "^5.1.7" }, "devDependencies": { - "prettier": "^3.5.3" + "prettier": "^3.6.0" } } From e2dfa575083910e753e8a8f73429335ccc24816b Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Mon, 23 Jun 2025 10:17:35 -0400 Subject: [PATCH 2/2] chore: formatting --- tests/configTests.js | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/tests/configTests.js b/tests/configTests.js index 87214d5..4da6655 100644 --- a/tests/configTests.js +++ b/tests/configTests.js @@ -49,33 +49,35 @@ describe('Notification URL', function () { describe('Certificate config', function () { it('should have a certificate path', function () { - assert( + (assert( process.env.CERTIFICATE_PATH && process.env.CERTIFICATE_PATH.length > 0, ), 'CERTIFICATE_PATH is not set in .env\n' + - 'Please provide a relative path and file name'; + 'Please provide a relative path and file name'); }); it('should have a certificate ID', function () { - assert(process.env.CERTIFICATE_ID && process.env.CERTIFICATE_ID.length > 0), + (assert( + process.env.CERTIFICATE_ID && process.env.CERTIFICATE_ID.length > 0, + ), 'CERTIFICATE_ID is not set in .env\n' + - 'Please provide an identifier for the certificate'; + 'Please provide an identifier for the certificate'); }); it('should have a private key path', function () { - assert( + (assert( process.env.PRIVATE_KEY_PATH && process.env.PRIVATE_KEY_PATH.length > 0, ), 'PRIVATE_KEY_PATH is not set in .env\n' + - 'Please provide a relative path and file name'; + 'Please provide a relative path and file name'); }); it('should have a private key password', function () { - assert( + (assert( process.env.PRIVATE_KEY_PASSWORD && process.env.PRIVATE_KEY_PASSWORD.length > 0, ), 'PRIVATE_KEY_PASSWORD is not set in .env\n' + - 'Please provide a password for the private key'; + 'Please provide a password for the private key'); }); });