Skip to content

Commit 6dff2f9

Browse files
author
Bilal Boussayoud
authoredJan 13, 2023
chore: readd ts tests to test rule (#888)
1 parent b471067 commit 6dff2f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎lib/twiml/TwiML.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import builder from "xmlbuilder";
77
/* jshint ignore:end */
88

99
export default class TwiML {
10+
[key: string]: any;
1011
response: any;
1112
_propertyName: string;
1213

@@ -35,7 +36,6 @@ export default class TwiML {
3536
*/
3637
/* jshint ignore:end */
3738
_getXml() {
38-
// @ts-ignore
3939
return this[this._propertyName];
4040
}
4141

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"typedoc": "^0.23.21"
5353
},
5454
"scripts": {
55-
"test": "npm run test:javascript",
55+
"test": "npm run test:javascript && npm run test:typescript",
5656
"test:javascript": "jest spec/* --coverage --detectOpenHandles",
5757
"test:typescript": "tsc --noEmit",
5858
"jshint": "jshint lib/rest/** lib/base/** lib/http/**",

0 commit comments

Comments
 (0)
Please sign in to comment.