File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -1940,6 +1940,20 @@ describe('TelegramBot', function telegramSuite() {
1940
1940
} ) ;
1941
1941
} ) ;
1942
1942
1943
+ describe . skip ( '#deleteStickerSet' , function deleteStickerSetSuite ( ) {
1944
+ before ( function before ( ) {
1945
+ utils . handleRatelimit ( bot , 'deleteStickerSet' , this ) ;
1946
+ } ) ;
1947
+
1948
+ it ( 'should delete sticker set' , function test ( ) {
1949
+ const stickerPackName = `s${ CURRENT_TIMESTAMP } _by_${ BOT_USERNAME } ` ;
1950
+
1951
+ bot . deleteStickerSet ( stickerPackName ) . then ( ( resp ) => {
1952
+ assert . ok ( is . boolean ( resp ) ) ;
1953
+ } ) ;
1954
+ } ) ;
1955
+ } ) ;
1956
+
1943
1957
describe . skip ( '#answerInlineQuery' , function answerInlineQuerySuite ( ) { } ) ;
1944
1958
1945
1959
describe . skip ( '#answerWebAppQuery' , function answerCallbackQuerySuite ( ) { } ) ;
You can’t perform that action at this time.
0 commit comments