test: Fix previously-uncaught lint errors

release
GochoMugo 8 years ago
parent 2bdd50fdc2
commit 7e9e9b11b3
No known key found for this signature in database
GPG Key ID: 7B6A01CB57AA39E4
  1. 4
      examples/polling.js
  2. 4
      examples/webhook/https.js

@ -62,8 +62,8 @@ bot.onText(/\/editable/, function onEditableText(msg) {
[ [
{ {
text: 'Edit Text', text: 'Edit Text',
// we shall check for this value when we listen // we shall check for this value when we listen
// for "callback_query" // for "callback_query"
callback_data: 'edit' callback_data: 'edit'
} }
] ]

@ -9,8 +9,8 @@ const TelegramBot = require('../..');
const options = { const options = {
webHook: { webHook: {
port: 443, port: 443,
key: `${__dirname}/../ssl/key.pem`, // Path to file with PEM private key key: `${__dirname}/../ssl/key.pem`, // Path to file with PEM private key
cert: `${__dirname}/../ssl/crt.pem` // Path to file with PEM certificate cert: `${__dirname}/../ssl/crt.pem` // Path to file with PEM certificate
} }
}; };
// This URL must route to the port set above (i.e. 443) // This URL must route to the port set above (i.e. 443)

Loading…
Cancel
Save