chore(deps-dev): bump prettier from 2.8.8 to 3.0.0 (#9357)
* chore(deps-dev): bump prettier from 2.8.8 to 3.0.0 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.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/2.8.8...3.0.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * reformat all the things (prettier 3) * update tests to await calls to prettier.format() --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: chris48s <git@chris-shaw.dev>
This commit is contained in:
@@ -11,15 +11,15 @@ t.create('commit status - commit in branch')
|
||||
})
|
||||
|
||||
t.create(
|
||||
'commit status - checked commit is identical with the newest commit in branch'
|
||||
'commit status - checked commit is identical with the newest commit in branch',
|
||||
)
|
||||
.get('/badges/shields/master/5d4ab86b1b5ddfb3c4a70a70bd19932c52603b8c.json')
|
||||
.intercept(nock =>
|
||||
nock('https://api.github.com')
|
||||
.get(
|
||||
'/repos/badges/shields/compare/master...5d4ab86b1b5ddfb3c4a70a70bd19932c52603b8c'
|
||||
'/repos/badges/shields/compare/master...5d4ab86b1b5ddfb3c4a70a70bd19932c52603b8c',
|
||||
)
|
||||
.reply(200, { status: 'identical' })
|
||||
.reply(200, { status: 'identical' }),
|
||||
)
|
||||
.expectBadge({
|
||||
label: 'commit status',
|
||||
@@ -45,7 +45,7 @@ t.create('commit status - unknown commit id')
|
||||
|
||||
t.create('commit status - unknown branch')
|
||||
.get(
|
||||
'/badges/shields/this-branch-does-not-exist/b551a3a8daf1c48dba32a3eab1edf99b10c28863.json'
|
||||
'/badges/shields/this-branch-does-not-exist/b551a3a8daf1c48dba32a3eab1edf99b10c28863.json',
|
||||
)
|
||||
.expectBadge({
|
||||
label: 'commit status',
|
||||
@@ -68,9 +68,9 @@ t.create('commit status - 404 with invalid JSON form github')
|
||||
.intercept(nock =>
|
||||
nock('https://api.github.com')
|
||||
.get(
|
||||
'/repos/badges/shields/compare/master...5d4ab86b1b5ddfb3c4a70a70bd19932c52603b8c'
|
||||
'/repos/badges/shields/compare/master...5d4ab86b1b5ddfb3c4a70a70bd19932c52603b8c',
|
||||
)
|
||||
.reply(404, invalidJSONString)
|
||||
.reply(404, invalidJSONString),
|
||||
)
|
||||
.expectBadge({
|
||||
label: 'commit status',
|
||||
|
||||
Reference in New Issue
Block a user