Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: re-add test:typescript to test rule #888

Merged
merged 1 commit into from Jan 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/twiml/TwiML.ts
Expand Up @@ -7,6 +7,7 @@ import builder from "xmlbuilder";
/* jshint ignore:end */

export default class TwiML {
[key: string]: any;
response: any;
_propertyName: string;

Expand Down Expand Up @@ -35,7 +36,6 @@ export default class TwiML {
*/
/* jshint ignore:end */
_getXml() {
// @ts-ignore
return this[this._propertyName];
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -52,7 +52,7 @@
"typedoc": "^0.23.21"
},
"scripts": {
"test": "npm run test:javascript",
"test": "npm run test:javascript && npm run test:typescript",
"test:javascript": "jest spec/* --coverage --detectOpenHandles",
"test:typescript": "tsc --noEmit",
"jshint": "jshint lib/rest/** lib/base/** lib/http/**",
Expand Down