Skip to content

Commit

Permalink
Bump the dev-dependencies group across 1 directory with 8 updates (#2631
Browse files Browse the repository at this point in the history
)

* Bump the dev-dependencies group across 1 directory with 8 updates

Bumps the dev-dependencies group with 8 updates in the /Framework directory:

| Package | From | To |
| --- | --- | --- |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.10.0` | `9.13.0` |
| [@stylistic/eslint-plugin-js](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin-js) | `2.8.0` | `2.9.0` |
| [eslint](https://github.com/eslint/eslint) | `9.10.0` | `9.13.0` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `50.2.2` | `50.4.3` |
| [globals](https://github.com/sindresorhus/globals) | `15.9.0` | `15.11.0` |
| [nyc](https://github.com/istanbuljs/nyc) | `17.0.0` | `17.1.0` |
| [puppeteer](https://github.com/puppeteer/puppeteer) | `23.3.0` | `23.6.0` |
| [sinon](https://github.com/sinonjs/sinon) | `18.0.0` | `19.0.2` |



Updates `@eslint/js` from 9.10.0 to 9.13.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.13.0/packages/js)

Updates `@stylistic/eslint-plugin-js` from 2.8.0 to 2.9.0
- [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases)
- [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v2.9.0/packages/eslint-plugin-js)

Updates `eslint` from 9.10.0 to 9.13.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.10.0...v9.13.0)

Updates `eslint-plugin-jsdoc` from 50.2.2 to 50.4.3
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc)
- [Commits](gajus/eslint-plugin-jsdoc@v50.2.2...v50.4.3)

Updates `globals` from 15.9.0 to 15.11.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v15.9.0...v15.11.0)

Updates `nyc` from 17.0.0 to 17.1.0
- [Release notes](https://github.com/istanbuljs/nyc/releases)
- [Changelog](https://github.com/istanbuljs/nyc/blob/main/CHANGELOG.md)
- [Commits](istanbuljs/nyc@nyc-v17.0.0...nyc-v17.1.0)

Updates `puppeteer` from 23.3.0 to 23.6.0
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json)
- [Commits](puppeteer/puppeteer@puppeteer-v23.3.0...puppeteer-v23.6.0)

Updates `sinon` from 18.0.0 to 19.0.2
- [Release notes](https://github.com/sinonjs/sinon/releases)
- [Changelog](https://github.com/sinonjs/sinon/blob/main/docs/changelog.md)
- [Commits](sinonjs/sinon@v18.0.0...v19.0.2)

---
updated-dependencies:
- dependency-name: "@eslint/js"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@stylistic/eslint-plugin-js"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: eslint-plugin-jsdoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: globals
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: nyc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: puppeteer
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: sinon
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix eslint for updated rule on single-quote

* Use assert to evaluate promise rejection

* Increase timeout for test as it was exactly the same as constructor default

---------

Co-authored-by: George Raduta <[email protected]>
  • Loading branch information
dependabot[bot] and graduta authored Oct 24, 2024
1 parent e31bae7 commit 5c2cb6a
Show file tree
Hide file tree
Showing 5 changed files with 253 additions and 289 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const { UnauthorizedAccessError } = require('../../errors/UnauthorizedAccessErro

const assert = require('assert');

describe(`'grpcErrorToNativeError' test suite`, () => {
describe('\'grpcErrorToNativeError\' test suite', () => {
it('should successfully convert gRPC errors to native errors', () => {
assert.deepStrictEqual(grpcErrorToNativeError({ code: 3, message: 'invalid' }), new InvalidInputError('invalid'));
assert.deepStrictEqual(grpcErrorToNativeError({ code: 4, message: 'timeout' }), new TimeoutError('timeout'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const { updateAndSendExpressResponseFromNativeError } = require('../../errors/up
const assert = require('assert');
const sinon = require('sinon');

describe(`'updateAndSendExpressResponseFromNativeError' test suite`, () => {
describe('\'updateAndSendExpressResponseFromNativeError\' test suite', () => {
let response;
before(() => {
response = {
Expand Down
7 changes: 4 additions & 3 deletions Framework/Backend/test/mocha-openid.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
* or submit itself to any jurisdiction.
*/

const assert = require('assert');
const config = require('./../config-default.json');
const OpenId = require('./../http/openid.js');

describe('OpenID Connect client', () => {
it('should fail to create instance', (done) => {
it('should fail to create instance', async () => {
const openid = new OpenId(config.openId);
openid.createIssuer().catch(() => done());
}).timeout(5000);
await assert.rejects(async () => await openid.createIssuer());
}).timeout(5500);
});
Loading

0 comments on commit 5c2cb6a

Please sign in to comment.