How to use createReturnStatement method in ts-auto-mock

Best JavaScript code snippet using ts-auto-mock

string-formatter.ts

Source:string-formatter.ts Github

copy

Full Screen

...198 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),199 factory.createNull(),200 ),201 ),202 factory.createBlock([factory.createReturnStatement(factory.createIdentifier('date'))], true),203 undefined,204 ),205 factory.createVariableStatement(206 undefined,207 factory.createVariableDeclarationList(208 [209 factory.createVariableDeclaration(210 factory.createIdentifier('validDate'),211 undefined,212 undefined,213 factory.createNewExpression(factory.createIdentifier('Date'), undefined, [214 factory.createCallExpression(215 factory.createPropertyAccessExpression(216 factory.createIdentifier('Date'),217 factory.createIdentifier('parse'),218 ),219 undefined,220 [factory.createIdentifier('date')],221 ),222 ]),223 ),224 ],225 ts.NodeFlags.Const,226 ),227 ),228 factory.createIfStatement(229 factory.createBinaryExpression(230 factory.createCallExpression(231 factory.createPropertyAccessExpression(232 factory.createIdentifier('validDate'),233 factory.createIdentifier('toString'),234 ),235 undefined,236 [],237 ),238 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),239 factory.createIdentifier('invalidDateStr'),240 ),241 factory.createBlock([factory.createReturnStatement(factory.createIdentifier('date'))], true),242 undefined,243 ),244 factory.createVariableStatement(245 undefined,246 factory.createVariableDeclarationList(247 [248 factory.createVariableDeclaration(249 factory.createIdentifier('splitDate'),250 undefined,251 undefined,252 factory.createCallExpression(253 factory.createPropertyAccessExpression(254 factory.createIdentifier('date'),255 factory.createIdentifier('split'),256 ),257 undefined,258 [factory.createRegularExpressionLiteral(`/-|\\+|Z/`)],259 ),260 ),261 ],262 ts.NodeFlags.Const,263 ),264 ),265 factory.createVariableStatement(266 undefined,267 factory.createVariableDeclarationList(268 [269 factory.createVariableDeclaration(270 factory.createIdentifier('year'),271 undefined,272 undefined,273 factory.createElementAccessExpression(274 factory.createIdentifier('splitDate'),275 factory.createNumericLiteral('0'),276 ),277 ),278 ],279 ts.NodeFlags.Const,280 ),281 ),282 factory.createVariableStatement(283 undefined,284 factory.createVariableDeclarationList(285 [286 factory.createVariableDeclaration(287 factory.createIdentifier('month'),288 undefined,289 undefined,290 factory.createElementAccessExpression(291 factory.createIdentifier('splitDate'),292 factory.createNumericLiteral('1'),293 ),294 ),295 ],296 ts.NodeFlags.Const,297 ),298 ),299 factory.createVariableStatement(300 undefined,301 factory.createVariableDeclarationList(302 [303 factory.createVariableDeclaration(304 factory.createIdentifier('day'),305 undefined,306 undefined,307 factory.createElementAccessExpression(308 factory.createIdentifier('splitDate'),309 factory.createNumericLiteral('2'),310 ),311 ),312 ],313 ts.NodeFlags.Const,314 ),315 ),316 factory.createVariableStatement(317 undefined,318 factory.createVariableDeclarationList(319 [320 factory.createVariableDeclaration(321 factory.createIdentifier('truncatedMonth'),322 undefined,323 undefined,324 factory.createCallExpression(325 factory.createPropertyAccessExpression(326 factory.createIdentifier('month'),327 factory.createIdentifier('replace'),328 ),329 undefined,330 [factory.createRegularExpressionLiteral('/^0+/'), factory.createStringLiteral('')],331 ),332 ),333 ],334 ts.NodeFlags.Const,335 ),336 ),337 factory.createSwitchStatement(338 factory.createIdentifier('dateFormat'),339 factory.createCaseBlock([340 factory.createCaseClause(factory.createStringLiteral('locale'), [341 factory.createReturnStatement(342 factory.createCallExpression(343 factory.createPropertyAccessExpression(344 factory.createIdentifier('validDate'),345 factory.createIdentifier('toLocaleDateString'),346 ),347 undefined,348 [],349 ),350 ),351 ]),352 factory.createCaseClause(factory.createStringLiteral('YYYY.MM.DD'), [353 factory.createReturnStatement(354 factory.createTemplateExpression(factory.createTemplateHead('', ''), [355 factory.createTemplateSpan(factory.createIdentifier('year'), factory.createTemplateMiddle('.', '.')),356 factory.createTemplateSpan(factory.createIdentifier('month'), factory.createTemplateMiddle('.', '.')),357 factory.createTemplateSpan(factory.createIdentifier('day'), factory.createTemplateTail('', '')),358 ]),359 ),360 ]),361 factory.createCaseClause(factory.createStringLiteral('DD.MM.YYYY'), [362 factory.createReturnStatement(363 factory.createTemplateExpression(factory.createTemplateHead('', ''), [364 factory.createTemplateSpan(factory.createIdentifier('day'), factory.createTemplateMiddle('.', '.')),365 factory.createTemplateSpan(factory.createIdentifier('month'), factory.createTemplateMiddle('.', '.')),366 factory.createTemplateSpan(factory.createIdentifier('year'), factory.createTemplateTail('', '')),367 ]),368 ),369 ]),370 factory.createCaseClause(factory.createStringLiteral('MM/DD/YYYY'), [371 factory.createReturnStatement(372 factory.createTemplateExpression(factory.createTemplateHead('', ''), [373 factory.createTemplateSpan(factory.createIdentifier('month'), factory.createTemplateMiddle('/', '/')),374 factory.createTemplateSpan(factory.createIdentifier('day'), factory.createTemplateMiddle('/', '/')),375 factory.createTemplateSpan(factory.createIdentifier('year'), factory.createTemplateTail('', '')),376 ]),377 ),378 ]),379 factory.createCaseClause(factory.createStringLiteral('Mmm DD, YYYY'), [380 factory.createReturnStatement(381 factory.createTemplateExpression(factory.createTemplateHead('', ''), [382 factory.createTemplateSpan(383 factory.createElementAccessExpression(384 factory.createIdentifier('monthToShortMon'),385 factory.createIdentifier('truncatedMonth'),386 ),387 factory.createTemplateMiddle(' ', ' '),388 ),389 factory.createTemplateSpan(factory.createIdentifier('day'), factory.createTemplateMiddle(', ', ', ')),390 factory.createTemplateSpan(factory.createIdentifier('year'), factory.createTemplateTail('', '')),391 ]),392 ),393 ]),394 factory.createDefaultClause([factory.createReturnStatement(factory.createIdentifier('date'))]),395 ]),396 ),397 ],398 true,399 ),400 ),401 factory.createFunctionDeclaration(402 undefined,403 [factory.createModifier(ts.SyntaxKind.ExportKeyword)],404 undefined,405 factory.createIdentifier('formatTime'),406 undefined,407 [408 factory.createParameterDeclaration(409 undefined,410 undefined,411 undefined,412 factory.createIdentifier('time'),413 undefined,414 factory.createKeywordTypeNode(ts.SyntaxKind.StringKeyword),415 undefined,416 ),417 factory.createParameterDeclaration(418 undefined,419 undefined,420 undefined,421 factory.createIdentifier('timeFormat'),422 undefined,423 factory.createIndexedAccessTypeNode(424 factory.createTypeReferenceNode(factory.createIdentifier('TimeFormat'), undefined),425 factory.createLiteralTypeNode(factory.createStringLiteral('timeFormat')),426 ),427 undefined,428 ),429 ],430 factory.createKeywordTypeNode(ts.SyntaxKind.StringKeyword),431 factory.createBlock(432 [433 factory.createIfStatement(434 factory.createBinaryExpression(435 factory.createBinaryExpression(436 factory.createIdentifier('time'),437 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),438 factory.createIdentifier('undefined'),439 ),440 factory.createToken(ts.SyntaxKind.BarBarToken),441 factory.createBinaryExpression(442 factory.createIdentifier('time'),443 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),444 factory.createNull(),445 ),446 ),447 factory.createBlock([factory.createReturnStatement(factory.createIdentifier('time'))], true),448 undefined,449 ),450 factory.createVariableStatement(451 undefined,452 factory.createVariableDeclarationList(453 [454 factory.createVariableDeclaration(455 factory.createIdentifier('splitTime'),456 undefined,457 undefined,458 factory.createCallExpression(459 factory.createPropertyAccessExpression(460 factory.createIdentifier('time'),461 factory.createIdentifier('split'),462 ),463 undefined,464 [factory.createRegularExpressionLiteral('/:|Z/')],465 ),466 ),467 ],468 ts.NodeFlags.Const,469 ),470 ),471 factory.createIfStatement(472 factory.createBinaryExpression(473 factory.createPropertyAccessExpression(474 factory.createIdentifier('splitTime'),475 factory.createIdentifier('length'),476 ),477 factory.createToken(ts.SyntaxKind.LessThanToken),478 factory.createNumericLiteral('3'),479 ),480 factory.createBlock([factory.createReturnStatement(factory.createIdentifier('time'))], true),481 undefined,482 ),483 factory.createVariableStatement(484 undefined,485 factory.createVariableDeclarationList(486 [487 factory.createVariableDeclaration(488 factory.createIdentifier('validTime'),489 undefined,490 undefined,491 factory.createNewExpression(factory.createIdentifier('Date'), undefined, []),492 ),493 ],494 ts.NodeFlags.Const,495 ),496 ),497 factory.createExpressionStatement(498 factory.createCallExpression(499 factory.createPropertyAccessExpression(500 factory.createIdentifier('validTime'),501 factory.createIdentifier('setHours'),502 ),503 undefined,504 [505 factory.createCallExpression(506 factory.createPropertyAccessExpression(507 factory.createIdentifier('Number'),508 factory.createIdentifier('parseInt'),509 ),510 undefined,511 [512 factory.createElementAccessExpression(513 factory.createIdentifier('splitTime'),514 factory.createNumericLiteral('0'),515 ),516 factory.createNumericLiteral('10'),517 ],518 ),519 ],520 ),521 ),522 factory.createExpressionStatement(523 factory.createCallExpression(524 factory.createPropertyAccessExpression(525 factory.createIdentifier('validTime'),526 factory.createIdentifier('setMinutes'),527 ),528 undefined,529 [530 factory.createCallExpression(531 factory.createPropertyAccessExpression(532 factory.createIdentifier('Number'),533 factory.createIdentifier('parseInt'),534 ),535 undefined,536 [537 factory.createElementAccessExpression(538 factory.createIdentifier('splitTime'),539 factory.createNumericLiteral('1'),540 ),541 factory.createNumericLiteral('10'),542 ],543 ),544 ],545 ),546 ),547 factory.createVariableStatement(548 undefined,549 factory.createVariableDeclarationList(550 [551 factory.createVariableDeclaration(552 factory.createIdentifier('splitSeconds'),553 undefined,554 undefined,555 factory.createCallExpression(556 factory.createPropertyAccessExpression(557 factory.createElementAccessExpression(558 factory.createIdentifier('splitTime'),559 factory.createNumericLiteral('2'),560 ),561 factory.createIdentifier('split'),562 ),563 undefined,564 [factory.createStringLiteral('.')],565 ),566 ),567 ],568 ts.NodeFlags.Const,569 ),570 ),571 factory.createExpressionStatement(572 factory.createCallExpression(573 factory.createPropertyAccessExpression(574 factory.createIdentifier('validTime'),575 factory.createIdentifier('setSeconds'),576 ),577 undefined,578 [579 factory.createCallExpression(580 factory.createPropertyAccessExpression(581 factory.createIdentifier('Number'),582 factory.createIdentifier('parseInt'),583 ),584 undefined,585 [586 factory.createElementAccessExpression(587 factory.createIdentifier('splitSeconds'),588 factory.createNumericLiteral('0'),589 ),590 factory.createNumericLiteral('10'),591 ],592 ),593 factory.createCallExpression(594 factory.createPropertyAccessExpression(595 factory.createIdentifier('Number'),596 factory.createIdentifier('parseInt'),597 ),598 undefined,599 [600 factory.createElementAccessExpression(601 factory.createIdentifier('splitSeconds'),602 factory.createNumericLiteral('1'),603 ),604 factory.createNumericLiteral('10'),605 ],606 ),607 ],608 ),609 ),610 factory.createIfStatement(611 factory.createBinaryExpression(612 factory.createCallExpression(613 factory.createPropertyAccessExpression(614 factory.createIdentifier('validTime'),615 factory.createIdentifier('toString'),616 ),617 undefined,618 [],619 ),620 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),621 factory.createIdentifier('invalidDateStr'),622 ),623 factory.createBlock([factory.createReturnStatement(factory.createIdentifier('time'))], true),624 undefined,625 ),626 factory.createSwitchStatement(627 factory.createIdentifier('timeFormat'),628 factory.createCaseBlock([629 factory.createCaseClause(factory.createStringLiteral('locale'), [630 factory.createReturnStatement(631 factory.createCallExpression(632 factory.createPropertyAccessExpression(633 factory.createIdentifier('validTime'),634 factory.createIdentifier('toLocaleTimeString'),635 ),636 undefined,637 [],638 ),639 ),640 ]),641 factory.createCaseClause(factory.createStringLiteral('hours24'), [642 factory.createReturnStatement(643 factory.createCallExpression(644 factory.createPropertyAccessExpression(645 factory.createIdentifier('validTime'),646 factory.createIdentifier('toLocaleTimeString'),647 ),648 undefined,649 [factory.createStringLiteral('en-gb')],650 ),651 ),652 ]),653 factory.createCaseClause(factory.createStringLiteral('hours12'), [654 factory.createReturnStatement(655 factory.createCallExpression(656 factory.createPropertyAccessExpression(657 factory.createIdentifier('validTime'),658 factory.createIdentifier('toLocaleTimeString'),659 ),660 undefined,661 [factory.createStringLiteral('en-us')],662 ),663 ),664 ]),665 factory.createDefaultClause([factory.createReturnStatement(factory.createIdentifier('time'))]),666 ]),667 ),668 ],669 true,670 ),671 ),672 factory.createFunctionDeclaration(673 undefined,674 [factory.createModifier(ts.SyntaxKind.ExportKeyword)],675 undefined,676 factory.createIdentifier('formatDateTime'),677 undefined,678 [679 factory.createParameterDeclaration(680 undefined,681 undefined,682 undefined,683 factory.createIdentifier('dateTimeStr'),684 undefined,685 factory.createKeywordTypeNode(ts.SyntaxKind.StringKeyword),686 undefined,687 ),688 factory.createParameterDeclaration(689 undefined,690 undefined,691 undefined,692 factory.createIdentifier('dateTimeFormat'),693 undefined,694 factory.createIndexedAccessTypeNode(695 factory.createTypeReferenceNode(factory.createIdentifier('DateTimeFormat'), undefined),696 factory.createLiteralTypeNode(factory.createStringLiteral('dateTimeFormat')),697 ),698 undefined,699 ),700 ],701 factory.createKeywordTypeNode(ts.SyntaxKind.StringKeyword),702 factory.createBlock(703 [704 factory.createIfStatement(705 factory.createBinaryExpression(706 factory.createBinaryExpression(707 factory.createIdentifier('dateTimeStr'),708 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),709 factory.createIdentifier('undefined'),710 ),711 factory.createToken(ts.SyntaxKind.BarBarToken),712 factory.createBinaryExpression(713 factory.createIdentifier('dateTimeStr'),714 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),715 factory.createNull(),716 ),717 ),718 factory.createBlock([factory.createReturnStatement(factory.createIdentifier('dateTimeStr'))], true),719 undefined,720 ),721 factory.createVariableStatement(722 undefined,723 factory.createVariableDeclarationList(724 [725 factory.createVariableDeclaration(726 factory.createIdentifier('dateTime'),727 undefined,728 undefined,729 factory.createConditionalExpression(730 factory.createCallExpression(731 factory.createPropertyAccessExpression(732 factory.createRegularExpressionLiteral('/^d+$/'),733 factory.createIdentifier('test'),734 ),735 undefined,736 [factory.createIdentifier('dateTimeStr')],737 ),738 factory.createToken(ts.SyntaxKind.QuestionToken),739 factory.createNewExpression(factory.createIdentifier('Date'), undefined, [740 factory.createCallExpression(741 factory.createPropertyAccessExpression(742 factory.createIdentifier('Number'),743 factory.createIdentifier('parseInt'),744 ),745 undefined,746 [factory.createIdentifier('dateTimeStr'), factory.createNumericLiteral('10')],747 ),748 ]),749 factory.createToken(ts.SyntaxKind.ColonToken),750 factory.createNewExpression(factory.createIdentifier('Date'), undefined, [751 factory.createCallExpression(752 factory.createPropertyAccessExpression(753 factory.createIdentifier('Date'),754 factory.createIdentifier('parse'),755 ),756 undefined,757 [factory.createIdentifier('dateTimeStr')],758 ),759 ]),760 ),761 ),762 ],763 ts.NodeFlags.Const,764 ),765 ),766 factory.createIfStatement(767 factory.createBinaryExpression(768 factory.createCallExpression(769 factory.createPropertyAccessExpression(770 factory.createIdentifier('dateTime'),771 factory.createIdentifier('toString'),772 ),773 undefined,774 [],775 ),776 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),777 factory.createIdentifier('invalidDateStr'),778 ),779 factory.createBlock([factory.createReturnStatement(factory.createIdentifier('dateTimeStr'))], true),780 undefined,781 ),782 factory.createIfStatement(783 factory.createBinaryExpression(784 factory.createIdentifier('dateTimeFormat'),785 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),786 factory.createStringLiteral('locale'),787 ),788 factory.createBlock(789 [790 factory.createReturnStatement(791 factory.createCallExpression(792 factory.createPropertyAccessExpression(793 factory.createIdentifier('dateTime'),794 factory.createIdentifier('toLocaleString'),795 ),796 undefined,797 [],798 ),799 ),800 ],801 true,802 ),803 undefined,804 ),805 factory.createVariableStatement(806 undefined,807 factory.createVariableDeclarationList(808 [809 factory.createVariableDeclaration(810 factory.createIdentifier('dateAndTime'),811 undefined,812 undefined,813 factory.createCallExpression(814 factory.createPropertyAccessExpression(815 factory.createCallExpression(816 factory.createPropertyAccessExpression(817 factory.createIdentifier('dateTime'),818 factory.createIdentifier('toISOString'),819 ),820 undefined,821 [],822 ),823 factory.createIdentifier('split'),824 ),825 undefined,826 [factory.createStringLiteral('T')],827 ),828 ),829 ],830 ts.NodeFlags.Const,831 ),832 ),833 factory.createVariableStatement(834 undefined,835 factory.createVariableDeclarationList(836 [837 factory.createVariableDeclaration(838 factory.createIdentifier('date'),839 undefined,840 undefined,841 factory.createCallExpression(factory.createIdentifier('formatDate'), undefined, [842 factory.createElementAccessExpression(843 factory.createIdentifier('dateAndTime'),844 factory.createNumericLiteral('0'),845 ),846 factory.createPropertyAccessExpression(847 factory.createIdentifier('dateTimeFormat'),848 factory.createIdentifier('dateFormat'),849 ),850 ]),851 ),852 ],853 ts.NodeFlags.Const,854 ),855 ),856 factory.createVariableStatement(857 undefined,858 factory.createVariableDeclarationList(859 [860 factory.createVariableDeclaration(861 factory.createIdentifier('time'),862 undefined,863 undefined,864 factory.createCallExpression(factory.createIdentifier('formatTime'), undefined, [865 factory.createElementAccessExpression(866 factory.createIdentifier('dateAndTime'),867 factory.createNumericLiteral('1'),868 ),869 factory.createPropertyAccessExpression(870 factory.createIdentifier('dateTimeFormat'),871 factory.createIdentifier('timeFormat'),872 ),873 ]),874 ),875 ],876 ts.NodeFlags.Const,877 ),878 ),879 factory.createReturnStatement(880 factory.createTemplateExpression(factory.createTemplateHead('', ''), [881 factory.createTemplateSpan(factory.createIdentifier('date'), factory.createTemplateMiddle(' - ', ' - ')),882 factory.createTemplateSpan(factory.createIdentifier('time'), factory.createTemplateTail('', '')),883 ]),884 ),885 ],886 true,887 ),888 ),889 factory.createFunctionDeclaration(890 undefined,891 [factory.createModifier(ts.SyntaxKind.ExportKeyword)],892 undefined,893 factory.createIdentifier('formatter'),894 undefined,895 [896 factory.createParameterDeclaration(897 undefined,898 undefined,899 undefined,900 factory.createIdentifier('value'),901 undefined,902 factory.createKeywordTypeNode(ts.SyntaxKind.StringKeyword),903 undefined,904 ),905 factory.createParameterDeclaration(906 undefined,907 undefined,908 undefined,909 factory.createIdentifier('formatterInput'),910 undefined,911 factory.createTypeReferenceNode(factory.createIdentifier('FormatInputType'), undefined),912 undefined,913 ),914 ],915 undefined,916 factory.createBlock(917 [918 factory.createSwitchStatement(919 factory.createPropertyAccessExpression(920 factory.createIdentifier('formatterInput'),921 factory.createIdentifier('type'),922 ),923 factory.createCaseBlock([924 factory.createCaseClause(factory.createStringLiteral('DateFormat'), [925 factory.createReturnStatement(926 factory.createCallExpression(factory.createIdentifier('formatDate'), undefined, [927 factory.createIdentifier('value'),928 factory.createPropertyAccessExpression(929 factory.createIdentifier('formatterInput'),930 factory.createIdentifier('format'),931 ),932 ]),933 ),934 ]),935 factory.createCaseClause(factory.createStringLiteral('DateTimeFormat'), [936 factory.createReturnStatement(937 factory.createCallExpression(factory.createIdentifier('formatDateTime'), undefined, [938 factory.createIdentifier('value'),939 factory.createPropertyAccessExpression(940 factory.createIdentifier('formatterInput'),941 factory.createIdentifier('format'),942 ),943 ]),944 ),945 ]),946 factory.createCaseClause(factory.createStringLiteral('TimeFormat'), [947 factory.createReturnStatement(948 factory.createCallExpression(factory.createIdentifier('formatTime'), undefined, [949 factory.createIdentifier('value'),950 factory.createPropertyAccessExpression(951 factory.createIdentifier('formatterInput'),952 factory.createIdentifier('format'),953 ),954 ]),955 ),956 ]),957 factory.createDefaultClause([factory.createReturnStatement(factory.createIdentifier('value'))]),958 ]),959 ),960 ],961 true,962 ),963 ),...

Full Screen

Full Screen

index.ts

Source:index.ts Github

copy

Full Screen

...41 [],42 [],43 void 0,44 context.factory.createBlock(45 [context.factory.createReturnStatement(context.factory.createStringLiteral(componentName))],46 true,47 ),48 ),49 context.factory.createMethodDeclaration(50 [],51 [],52 void 0,53 context.factory.createIdentifier('isReady'),54 void 0,55 [],56 [57 context.factory.createParameterDeclaration(58 [],59 [],60 void 0,61 context.factory.createIdentifier('props'),62 ),63 ],64 void 0,65 context.factory.createBlock(66 [67 context.factory.createVariableStatement(68 [],69 context.factory.createVariableDeclarationList(70 [71 context.factory.createVariableDeclaration(72 context.factory.createIdentifier('key'),73 void 0,74 void 0,75 context.factory.createCallExpression(76 context.factory.createPropertyAccessExpression(77 context.factory.createThis(),78 context.factory.createIdentifier('resolve'),79 ),80 [],81 [context.factory.createIdentifier('props')],82 ),83 ),84 ],85 ts.NodeFlags.Const,86 ),87 ),88 context.factory.createIfStatement(89 context.factory.createBinaryExpression(90 context.factory.createElementAccessExpression(91 context.factory.createPropertyAccessExpression(92 context.factory.createThis(),93 context.factory.createIdentifier('resolved'),94 ),95 context.factory.createIdentifier('key'),96 ),97 context.factory.createToken(ts.SyntaxKind.ExclamationEqualsEqualsToken),98 context.factory.createTrue(),99 ),100 context.factory.createBlock([101 context.factory.createReturnStatement(context.factory.createFalse()),102 ]),103 ),104 context.factory.createIfStatement(105 context.factory.createBinaryExpression(106 context.factory.createTypeOfExpression(context.factory.createIdentifier(WEBPACK_MODULES)),107 context.factory.createToken(ts.SyntaxKind.ExclamationEqualsEqualsToken),108 context.factory.createStringLiteral('undefined'),109 ),110 context.factory.createBlock(111 [112 context.factory.createReturnStatement(113 context.factory.createPrefixUnaryExpression(114 ts.SyntaxKind.ExclamationToken,115 context.factory.createElementAccessExpression(116 context.factory.createIdentifier(WEBPACK_MODULES),117 context.factory.createIdentifier('key'),118 ),119 ),120 ),121 ],122 true,123 ),124 ),125 context.factory.createReturnStatement(context.factory.createTrue()),126 ],127 true,128 ),129 ),130 context.factory.createPropertyAssignment(131 context.factory.createIdentifier('importAsync'),132 context.factory.createArrowFunction(133 [],134 [],135 [],136 void 0,137 context.factory.createToken(ts.SyntaxKind.EqualsGreaterThanToken),138 context.factory.createCallExpression(139 // @ts-expect-error140 context.factory.createToken(ts.SyntaxKind.ImportKeyword),141 [],142 [143 (function () {144 const p = context.factory.createStringLiteral(rawPath)145 ts.addSyntheticLeadingComment(146 p,147 ts.SyntaxKind.MultiLineCommentTrivia,148 ` webpackChunkName: "${componentName}" `,149 true,150 )151 return p152 })(),153 ],154 ),155 ),156 ),157 context.factory.createMethodDeclaration(158 [],159 [],160 void 0,161 context.factory.createIdentifier('requireAsync'),162 void 0,163 [],164 [165 context.factory.createParameterDeclaration(166 [],167 [],168 void 0,169 context.factory.createIdentifier('props'),170 ),171 ],172 void 0,173 context.factory.createBlock(174 [175 context.factory.createVariableStatement(176 [],177 context.factory.createVariableDeclarationList(178 [179 context.factory.createVariableDeclaration(180 context.factory.createIdentifier('key'),181 void 0,182 void 0,183 context.factory.createCallExpression(184 context.factory.createPropertyAccessExpression(185 context.factory.createThis(),186 context.factory.createIdentifier('resolve'),187 ),188 [],189 [context.factory.createIdentifier('props')],190 ),191 ),192 ],193 ts.NodeFlags.Const,194 ),195 ),196 context.factory.createExpressionStatement(197 context.factory.createBinaryExpression(198 context.factory.createElementAccessExpression(199 context.factory.createPropertyAccessExpression(200 context.factory.createThis(),201 context.factory.createIdentifier('resolved'),202 ),203 context.factory.createIdentifier('key'),204 ),205 context.factory.createToken(ts.SyntaxKind.EqualsToken),206 context.factory.createFalse(),207 ),208 ),209 context.factory.createReturnStatement(210 context.factory.createCallExpression(211 context.factory.createPropertyAccessExpression(212 context.factory.createCallExpression(213 context.factory.createPropertyAccessExpression(214 context.factory.createThis(),215 context.factory.createIdentifier('importAsync'),216 ),217 [],218 [context.factory.createIdentifier('props')],219 ),220 context.factory.createIdentifier('then'),221 ),222 [],223 [224 context.factory.createArrowFunction(225 [],226 [],227 [228 context.factory.createParameterDeclaration(229 [],230 [],231 void 0,232 context.factory.createIdentifier('resolved'),233 ),234 ],235 void 0,236 context.factory.createToken(ts.SyntaxKind.EqualsGreaterThanToken),237 context.factory.createBlock(238 [239 context.factory.createExpressionStatement(240 context.factory.createBinaryExpression(241 context.factory.createElementAccessExpression(242 context.factory.createPropertyAccessExpression(243 context.factory.createThis(),244 context.factory.createIdentifier('resolved'),245 ),246 context.factory.createIdentifier('key'),247 ),248 ts.SyntaxKind.EqualsToken,249 context.factory.createTrue(),250 ),251 ),252 context.factory.createReturnStatement(context.factory.createIdentifier('resolved')),253 ],254 true,255 ),256 ),257 ],258 ),259 ),260 ],261 true,262 ),263 ),264 context.factory.createMethodDeclaration(265 [],266 [],267 void 0,268 context.factory.createIdentifier('requireSync'),269 void 0,270 [],271 [272 context.factory.createParameterDeclaration(273 [],274 [],275 void 0,276 context.factory.createIdentifier('props'),277 ),278 ],279 void 0,280 context.factory.createBlock(281 [282 context.factory.createVariableStatement(283 [],284 context.factory.createVariableDeclarationList(285 [286 context.factory.createVariableDeclaration(287 context.factory.createIdentifier('id'),288 void 0,289 void 0,290 context.factory.createCallExpression(291 context.factory.createPropertyAccessExpression(292 context.factory.createThis(),293 context.factory.createIdentifier('resolve'),294 ),295 [],296 [context.factory.createIdentifier('props')],297 ),298 ),299 ],300 ts.NodeFlags.Const,301 ),302 ),303 context.factory.createIfStatement(304 context.factory.createBinaryExpression(305 context.factory.createTypeOfExpression(context.factory.createIdentifier(WEBPACK_REQUIRE)),306 context.factory.createToken(ts.SyntaxKind.ExclamationEqualsEqualsToken),307 context.factory.createStringLiteral('undefined'),308 ),309 context.factory.createBlock(310 [311 context.factory.createReturnStatement(312 context.factory.createCallExpression(313 context.factory.createIdentifier(WEBPACK_REQUIRE),314 [],315 [context.factory.createIdentifier('id')],316 ),317 ),318 ],319 true,320 ),321 ),322 context.factory.createReturnStatement(323 context.factory.createCallExpression(324 context.factory.createPropertyAccessExpression(325 context.factory.createIdentifier('module'),326 context.factory.createIdentifier('require'),327 ),328 [],329 [330 (function () {331 const p = context.factory.createIdentifier('id')332 ts.addSyntheticLeadingComment(333 p,334 ts.SyntaxKind.MultiLineCommentTrivia,335 ' webpackIgnore: true ',336 false,337 )338 return p339 })(),340 ],341 ),342 ),343 ],344 true,345 ),346 ),347 context.factory.createMethodDeclaration(348 [],349 [],350 void 0,351 context.factory.createIdentifier('resolve'),352 void 0,353 [],354 [],355 void 0,356 context.factory.createBlock(357 [358 target === 'web'359 ? context.factory.createReturnStatement(360 context.factory.createCallExpression(361 context.factory.createPropertyAccessExpression(362 context.factory.createIdentifier('require'),363 context.factory.createIdentifier('resolveWeak'),364 ),365 [],366 [context.factory.createStringLiteral(rawPath)],367 ),368 )369 : context.factory.createReturnStatement(370 context.factory.createCallExpression(371 context.factory.createPropertyAccessExpression(372 context.factory.createIdentifier('require'),373 context.factory.createIdentifier('resolve'),374 ),375 [],376 [377 (function () {378 const p = context.factory.createStringLiteral(rawPath)379 ts.addSyntheticLeadingComment(380 p,381 ts.SyntaxKind.MultiLineCommentTrivia,382 ' webpackIgnore: true ',383 false,...

Full Screen

Full Screen

tco.ts

Source:tco.ts Github

copy

Full Screen

...62 node.parameters,63 node.type,64 node.equalsGreaterThanToken,65 ts.visitEachChild(66 factory.createBlock([factory.createReturnStatement(node.body)]),67 tcoVisitor(68 funcIdentifierType,69 paramNames,70 tempNames,71 recurseIdentifier,72 resultIdentifier,73 checker,74 factory,75 context,76 true,77 crossedFunctionBoundary78 ),79 context80 )81 )82 }83 } else if (ts.isReturnStatement(node)) {84 if (node.expression) {85 if (ts.isCallExpression(node.expression) && ts.isIdentifier(node.expression.expression)) {86 const callIdentifierType = checker.getTypeAtLocation(node.expression.expression)87 if (callIdentifierType === funcIdentifierType) {88 let tempAssignments: ts.Expression = undefined!89 let assignments: ts.Expression = undefined!90 for (let i = 0, p = 0; i < node.expression.arguments.length; i++) {91 const expr = node.expression.arguments[i]92 if (ts.isObjectLiteralExpression(expr) && expr.properties.every(ts.isPropertyAssignment)) {93 for (let j = 0; j < expr.properties.length; j++) {94 const t = factory.createAssignment(tempNames[p + j], expr.properties[j].initializer)95 if (!tempAssignments) {96 tempAssignments = t97 } else {98 tempAssignments = factory.createComma(tempAssignments, t)99 }100 const a = factory.createAssignment(paramNames[p + j], tempNames[p + j])101 if (!assignments) {102 assignments = a103 } else {104 assignments = factory.createComma(assignments, a)105 }106 }107 p += expr.properties.length108 } else {109 const t = factory.createAssignment(tempNames[p], expr)110 if (!tempAssignments) {111 tempAssignments = t112 } else {113 tempAssignments = factory.createComma(tempAssignments, t)114 }115 const a = factory.createAssignment(paramNames[p], tempNames[p])116 if (!assignments) {117 assignments = a118 } else {119 assignments = factory.createComma(assignments, a)120 }121 p += 1122 }123 }124 const expr = factory.createComma(tempAssignments, assignments)125 if (crossedFunctionBoundaryInner) {126 return factory.createReturnStatement(127 factory.createParenthesizedExpression(factory.createComma(expr, recurseIdentifier))128 )129 } else {130 return [131 factory.createParenthesizedExpression(expr),132 factory.createExpressionStatement(factory.createAssignment(resultIdentifier, recurseIdentifier)),133 factory.createContinueStatement()134 ]135 }136 }137 } else if (ts.isConditionalExpression(node.expression)) {138 return ts.visitEachChild(139 factory.createIfStatement(140 node.expression.condition,141 factory.createBlock([factory.createReturnStatement(node.expression.whenTrue)]),142 factory.createBlock([factory.createReturnStatement(node.expression.whenFalse)])143 ),144 tcoVisitor(145 funcIdentifierType,146 paramNames,147 tempNames,148 recurseIdentifier,149 resultIdentifier,150 checker,151 factory,152 context,153 crossedFunctionBoundaryInner,154 crossedFunctionBoundary155 ),156 context157 )158 } else if (ts.isParenthesizedExpression(node.expression)) {159 return ts.visitNode(160 factory.createReturnStatement(node.expression.expression),161 tcoVisitor(162 funcIdentifierType,163 paramNames,164 tempNames,165 recurseIdentifier,166 resultIdentifier,167 checker,168 factory,169 context,170 crossedFunctionBoundaryInner,171 crossedFunctionBoundary172 )173 )174 }175 }176 if (crossedFunctionBoundaryInner) {177 return factory.createReturnStatement(178 ts.visitEachChild(179 node.expression,180 tcoVisitor(181 funcIdentifierType,182 paramNames,183 tempNames,184 recurseIdentifier,185 resultIdentifier,186 checker,187 factory,188 context,189 crossedFunctionBoundaryInner,190 crossedFunctionBoundary191 ),192 context193 )194 )195 } else {196 return [197 factory.createExpressionStatement(198 factory.createAssignment(199 resultIdentifier,200 ts.visitEachChild(201 node.expression || factory.createVoidZero(),202 tcoVisitor(203 funcIdentifierType,204 paramNames,205 tempNames,206 recurseIdentifier,207 resultIdentifier,208 checker,209 factory,210 context,211 crossedFunctionBoundaryInner,212 crossedFunctionBoundary213 ),214 context215 )216 )217 ),218 factory.createContinueStatement()219 ]220 }221 } else {222 return ts.visitEachChild(223 node,224 tcoVisitor(225 funcIdentifierType,226 paramNames,227 tempNames,228 recurseIdentifier,229 resultIdentifier,230 checker,231 factory,232 context,233 crossedFunctionBoundaryInner,234 crossedFunctionBoundary235 ),236 context237 )238 }239 }240}241function createTempVariables(242 node: ts.FunctionDeclaration | ts.ArrowFunction,243 factory: ts.NodeFactory244): [Array<ts.Identifier>, Array<ts.VariableDeclaration>] {245 return node.parameters.reduce(246 (b, param) => {247 const names = toIdentifier(param.name)248 for (const name of names) {249 const uniqueName = factory.createUniqueName(name.text)250 b[0].push(uniqueName)251 b[1].push(factory.createVariableDeclaration(uniqueName, undefined, undefined, name))252 }253 return b254 },255 [[] as Array<ts.Identifier>, [] as Array<ts.VariableDeclaration>]256 )257}258export default function tco(program: ts.Program) {259 const checker = program.getTypeChecker()260 return {261 before(ctx: ts.TransformationContext) {262 const factory = ctx.factory263 return (sourceFile: ts.SourceFile) => {264 const recurse = factory.createUniqueName('recurse')265 const recurseIdentifier = factory.createPropertyAccessExpression(recurse, 'RECURSE')266 const visitor: ts.Visitor = (node) => {267 if (ts.isVariableDeclaration(node) && node.name && node.initializer && ts.isArrowFunction(node.initializer)) {268 const funcType = checker.getTypeAtLocation(node)269 const funcSymbol = funcType.getSymbol()270 let tailrecTag: string | undefined271 if (isInternal(node)) {272 tailrecTag = node.__sig_tags.filter((tag) => tag.includes('tailrec'))[0]273 } else {274 tailrecTag = funcSymbol275 ?.getDeclarations()276 ?.map((e) => {277 try {278 return ts279 .getAllJSDocTags(e, (t): t is ts.JSDocTag => t.tagName?.getText() === 'tailrec')280 .map((e) => e.tagName.text)281 } catch {282 return []283 }284 })285 .reduce((flatten, entry) => flatten.concat(entry))[0]286 }287 if (tailrecTag) {288 const resultIdentifier = factory.createUniqueName('result')289 const [tempVariableNames, tempVariableDeclarations] = createTempVariables(node.initializer, factory)290 const funcIdentifierType = checker.getTypeAtLocation(node.name)291 try {292 const crossedFunctionBoundary = { value: false }293 const loopBody = ts.visitEachChild(294 ts.isBlock(node.initializer.body)295 ? node.initializer.body296 : factory.createBlock([factory.createReturnStatement(node.initializer.body)]),297 tcoVisitor(298 funcIdentifierType,299 node.initializer.parameters.flatMap((p) => toIdentifier(p.name)),300 tempVariableNames,301 recurseIdentifier,302 resultIdentifier,303 checker,304 factory,305 ctx,306 false,307 crossedFunctionBoundary308 ),309 ctx310 )311 tempVariableDeclarations.push(312 factory.createVariableDeclaration(resultIdentifier, undefined, undefined, recurseIdentifier)313 )314 return factory.createVariableDeclaration(315 node.name,316 node.exclamationToken,317 node.type,318 factory.createArrowFunction(319 node.initializer.modifiers,320 node.initializer.typeParameters,321 node.initializer.parameters,322 node.initializer.type,323 node.initializer.equalsGreaterThanToken,324 factory.createBlock(325 [326 factory.createVariableStatement(327 undefined,328 factory.createVariableDeclarationList(tempVariableDeclarations)329 ),330 factory.createWhileStatement(331 factory.createBinaryExpression(332 resultIdentifier,333 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),334 recurseIdentifier335 ),336 loopBody337 ),338 factory.createReturnStatement(resultIdentifier)339 ],340 true341 )342 )343 )344 } catch (e) {345 console.log(e)346 return node347 }348 } else {349 return ts.visitEachChild(node, visitor, ctx)350 }351 } else if (ts.isFunctionDeclaration(node) && node.name && node.body) {352 const funcType = checker.getTypeAtLocation(node)353 const funcSymbol = funcType.getSymbol()354 let tailrecTag: string | undefined355 if (isInternal(node)) {356 tailrecTag = node.__sig_tags.filter((tag) => tag.includes('tailrec'))[0]357 } else {358 tailrecTag = funcSymbol359 ?.getDeclarations()360 ?.map((e) => {361 try {362 return ts363 .getAllJSDocTags(e, (t): t is ts.JSDocTag => t.tagName?.getText() === 'tailrec')364 .map((e) => e.tagName.text)365 } catch {366 return []367 }368 })369 .reduce((flatten, entry) => flatten.concat(entry))[0]370 }371 if (tailrecTag) {372 const resultIdentifier = factory.createUniqueName('result')373 const [tempVariableNames, tempVariableDeclarations] = createTempVariables(node, factory)374 const funcIdentifierType = checker.getTypeAtLocation(node.name)375 try {376 const crossedFunctionBoundary = { value: false }377 const loopBody = ts.visitEachChild(378 node,379 tcoVisitor(380 funcIdentifierType,381 node.parameters.flatMap((p) => toIdentifier(p.name)),382 tempVariableNames,383 recurseIdentifier,384 resultIdentifier,385 checker,386 factory,387 ctx,388 false,389 crossedFunctionBoundary390 ),391 ctx392 )393 tempVariableDeclarations.push(394 factory.createVariableDeclaration(resultIdentifier, undefined, undefined, recurseIdentifier)395 )396 return factory.createFunctionDeclaration(397 node.decorators,398 node.modifiers,399 node.asteriskToken,400 node.name,401 node.typeParameters,402 node.parameters,403 node.type,404 factory.createBlock(405 [406 factory.createVariableStatement(407 undefined,408 factory.createVariableDeclarationList(tempVariableDeclarations)409 ),410 factory.createWhileStatement(411 factory.createBinaryExpression(412 resultIdentifier,413 factory.createToken(ts.SyntaxKind.EqualsEqualsEqualsToken),414 recurseIdentifier415 ),416 loopBody.body!417 ),418 factory.createReturnStatement(resultIdentifier)419 ],420 true421 )422 )423 } catch (e) {424 console.log(e)425 return node426 }427 } else {428 return ts.visitEachChild(node, visitor, ctx)429 }430 } else {431 return ts.visitEachChild(node, visitor, ctx)432 }...

Full Screen

Full Screen

YieldState.js

Source:YieldState.js Github

copy

Full Screen

...27 replaceState: function(oldState, newState) {28 return new this.constructor(State.replaceStateId(this.id, oldState, newState), State.replaceStateId(this.fallThroughState, oldState, newState), this.expression);29 },30 transform: function(enclosingFinally, machineEndState, reporter) {31 return $__spread(State.generateAssignState(enclosingFinally, this.fallThroughState), [createReturnStatement(this.expression)]);32 }33 }, {}, $__super);...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1import { createReturnStatement } from 'ts-auto-mock/extension';2import { createReturnStatement } from 'ts-auto-mock/extension';3import { createReturnStatement } from 'ts-auto-mock/extension';4import { createReturnStatement } from 'ts-auto-mock/extension';5import { createReturnStatement } from 'ts-auto-mock/extension';6import { createReturnStatement } from 'ts-auto-mock/extension';7import { createReturnStatement } from 'ts-auto-mock/extension';8import { createReturnStatement } from 'ts-auto-mock/extension';9import { createReturnStatement } from 'ts-auto-mock/extension';10import { createReturnStatement } from 'ts-auto-mock/extension';11import { createReturnStatement } from 'ts-auto-mock/extension';12import { createReturnStatement } from 'ts-auto-mock/extension';13import { createReturnStatement } from 'ts-auto-mock/extension';14import { createReturnStatement } from 'ts-auto-mock/extension';

Full Screen

Using AI Code Generation

copy

Full Screen

1import { createReturnStatement } from 'ts-auto-mock/extension';2import { createMock } from 'ts-auto-mock';3describe('test1', () => {4 it('should return mock', () => {5 const mock = createMock();6 console.log(createReturnStatement(mock));

Full Screen

Using AI Code Generation

copy

Full Screen

1import { createReturnStatement } from 'ts-auto-mock/extension';2import { createMock } from 'ts-auto-mock';3import { Interface } from './interface';4export function getMock(): Interface {5 return createMock<Interface>();6}7export function getReturnStatement(): ReturnStatement {8 return createReturnStatement(getMock());9}10import { createReturnStatement } from 'ts-auto-mock/extension';11import { Interface } from './interface';12export function getReturnStatement(): ReturnStatement {13 return createReturnStatement({} as Interface);14}15export interface Interface {16 name: string;17}18at Object.createReturnStatement (node_modules/ts-auto-mock/extension.js:1:108)19at Object.getReturnStatement (test2.js:6:12)20at Context.it (test2.spec.js:7:19)21at process._tickCallback (internal/process/next_tick.js:68:7)

Full Screen

Using AI Code Generation

copy

Full Screen

1import { createReturnStatement } from 'ts-auto-mock';2const result = createReturnStatement('a', 'string');3console.log(result.getText());4import { createReturnStatement } from 'ts-auto-mock';5const result = createReturnStatement('a', 'number');6console.log(result.getText());7import { createReturnStatement } from 'ts-auto-mock';8const result = createReturnStatement('a', 'boolean');9console.log(result.getText());10import { createReturnStatement } from 'ts-auto-mock';11const result = createReturnStatement('a', 'any');12console.log(result.getText());13import { createReturnStatement } from 'ts-auto-mock';14const result = createReturnStatement('a', 'string | number');15console.log(result.getText());16import { createReturnStatement } from 'ts-auto-mock';17const result = createReturnStatement('a', 'string | number | boolean');18console.log(result.getText());19import { createReturnStatement } from 'ts-auto-mock';20const result = createReturnStatement('a', 'string | number | boolean | any');21console.log(result.getText());22import { createReturnStatement } from 'ts-auto-mock';23const result = createReturnStatement('a', 'string | number | boolean | any | null');24console.log(result.getText());25import { createReturnStatement } from 'ts-auto-mock';

Full Screen

Using AI Code Generation

copy

Full Screen

1import { createReturnStatement } from 'ts-auto-mock/extension';2const returnStatement = createReturnStatement('path/to/file');3import { createReturnStatement } from 'ts-auto-mock/extension';4const returnStatement = createReturnStatement('path/to/file');5import { createReturnStatement } from 'ts-auto-mock/extension';6const returnStatement = createReturnStatement('path/to/file');7import { createReturnStatement } from 'ts-auto-mock/extension';8const returnStatement = createReturnStatement('path/to/file');9import { createReturnStatement } from 'ts-auto-mock/extension';10const returnStatement = createReturnStatement('path/to/file');11namespace tsAutoMock {12 export function createReturnStatement(path: string) {13 return path;14 }15}16namespace tsAutoMock {17 export function createReturnStatement(path: string) {18 return path;19 }20}

Full Screen

Using AI Code Generation

copy

Full Screen

1import { createReturnStatement } from 'ts-auto-mock/extension';2const returnStatement = createReturnStatement('myFunction', 'myModule');3console.log(returnStatement);4{ kind: 214,5 name: { kind: 69, escapedText: 'myFunction' },6 _statementBrand: undefined }7import { createReturnStatement } from 'ts-auto-mock/extension';8const returnStatement = createReturnStatement('myFunction', 'myModule', 'myProperty');9console.log(returnStatement);10{ kind: 214,11 name: { kind: 69, escapedText: 'myFunction' },12 _statementBrand: undefined }13import { createReturnStatement } from 'ts-auto-mock/extension';14const returnStatement = createReturnStatement('myFunction', 'myModule', 'myProperty', true);15console.log(returnStatement);16{ kind: 214,17 name: { kind: 69, escapedText: 'myFunction' },

Full Screen

Using AI Code Generation

copy

Full Screen

1import { createReturnStatement } from 'ts-auto-mock/extension';2const mock = createReturnStatement('MyClass', 'myProperty');3const mock = createReturnStatement('MyInterface', 'myProperty');4const mock = createReturnStatement('MyFunction', 'myProperty');5const mock = createReturnStatement('MyType', 'myProperty');6const mock = createReturnStatement('MyVariable', 'myProperty');7const mock = createReturnStatement('MyVariable', 'myProperty');8const mock = createReturnStatement('MyVariable', 'myProperty');9const mock = createReturnStatement('MyVariable', 'myProperty');10const mock = createReturnStatement('MyVariable', 'myProperty');11const mock = createReturnStatement('MyVariable', 'myProperty');12const mock = createReturnStatement('MyVariable', 'myProperty');13const mock = createReturnStatement('MyVariable', 'myProperty');14const mock = createReturnStatement('MyVariable', 'myProperty');

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run ts-auto-mock automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful