Skip to content

Commit 7e20585

Browse files
Merge pull request #625 from microsoftgraph/dependabot/npm_and_yarn/prettier-3.6.0
chore(deps-dev): Bump prettier from 3.5.3 to 3.6.0
2 parents 732d128 + e2dfa57 commit 7e20585

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
"sqlite3": "^5.1.7"
3131
},
3232
"devDependencies": {
33-
"prettier": "^3.5.3"
33+
"prettier": "^3.6.0"
3434
}
3535
}

tests/configTests.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,33 +49,35 @@ describe('Notification URL', function () {
4949

5050
describe('Certificate config', function () {
5151
it('should have a certificate path', function () {
52-
assert(
52+
(assert(
5353
process.env.CERTIFICATE_PATH && process.env.CERTIFICATE_PATH.length > 0,
5454
),
5555
'CERTIFICATE_PATH is not set in .env\n' +
56-
'Please provide a relative path and file name';
56+
'Please provide a relative path and file name');
5757
});
5858

5959
it('should have a certificate ID', function () {
60-
assert(process.env.CERTIFICATE_ID && process.env.CERTIFICATE_ID.length > 0),
60+
(assert(
61+
process.env.CERTIFICATE_ID && process.env.CERTIFICATE_ID.length > 0,
62+
),
6163
'CERTIFICATE_ID is not set in .env\n' +
62-
'Please provide an identifier for the certificate';
64+
'Please provide an identifier for the certificate');
6365
});
6466

6567
it('should have a private key path', function () {
66-
assert(
68+
(assert(
6769
process.env.PRIVATE_KEY_PATH && process.env.PRIVATE_KEY_PATH.length > 0,
6870
),
6971
'PRIVATE_KEY_PATH is not set in .env\n' +
70-
'Please provide a relative path and file name';
72+
'Please provide a relative path and file name');
7173
});
7274

7375
it('should have a private key password', function () {
74-
assert(
76+
(assert(
7577
process.env.PRIVATE_KEY_PASSWORD &&
7678
process.env.PRIVATE_KEY_PASSWORD.length > 0,
7779
),
7880
'PRIVATE_KEY_PASSWORD is not set in .env\n' +
79-
'Please provide a password for the private key';
81+
'Please provide a password for the private key');
8082
});
8183
});

0 commit comments

Comments
 (0)