diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 35f70b5cb1f512..7795566eeeeadd 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -108,7 +108,7 @@ /types/alexa-voice-service/ @dolanmiu /types/algebra.js/ @CaselIT /types/ali-app/ @taoqf -/types/ali-oss/ @ptrdu +/types/ali-oss/ @ptrdu @StarHeartHunt /types/alicloud__log/ @RuixeWolf /types/align-text/ @claasahl /types/alipayjssdk/ @shlyren @@ -3758,6 +3758,7 @@ /types/js-sha1/ @yhaskell /types/js-string-escape/ @viralpickaxe /types/js-to-java/ @skyitachi @zhaoleipeng +/types/js-untar/ @aidinabedi /types/js-url/ @pine /types/js-worker-search/ @pbalogh /types/js-yaml/ @Bartvds @sclausen @ExE-Boss @ArmaanT @LinusU @@ -7411,6 +7412,7 @@ /types/speedometer/ @Dylan-G @f-arki /types/speedtest-net/ @ffflorian /types/spellchecker/ @dalevfenton +/types/spf-parse/ @ultraslayyy /types/sphere-engine-browser/ @fatcerberus /types/sphere-engine-browser/v1/ @Eggbertx /types/spinnies/ @benjamincburns @@ -8014,6 +8016,7 @@ /types/uni-app/ @dcloudio /types/unicode-dragon/ @richdouglasevans /types/unicode-escape/ @remcohaszing +/types/unicode-name/ @gamrix /types/unicode-properties/ @lionel-rowe /types/unicode-trie/ @esheppard /types/unidecode/ @vfernandestoptal diff --git a/types/sinon/index.d.ts b/types/sinon/index.d.ts index 53c9ec28c04d67..9eb93d6d94b7ed 100644 --- a/types/sinon/index.d.ts +++ b/types/sinon/index.d.ts @@ -793,15 +793,9 @@ declare namespace Sinon { interface SinonAssert { // Properties - /** - * Defaults to AssertError. - */ - failException: string; /** * Every assertion fails by calling this method. - * By default it throws an error of type sinon.assert.failException. - * If the test framework looks for assertion errors by checking for a specific exception, you can simply override the kind of exception thrown. - * If that does not fit with your testing framework of choice, override the fail method to do the right thing. + * If your testing framework of choice looks for assertion errors by checking for a specific exception, you can override the `fail` method to do the right thing. */ fail(message?: string): void; // Overridable /** diff --git a/types/sinon/package.json b/types/sinon/package.json index edfacc955f5444..8a96e48933b9ed 100644 --- a/types/sinon/package.json +++ b/types/sinon/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@types/sinon", - "version": "20.0.9999", + "version": "21.0.9999", "projects": [ "https://sinonjs.org" ],