File size: 56,482 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 |
/// <reference types="cypress" />
import * as vue from 'vue';
import { ComponentInternalInstance, FunctionalComponent, ComponentOptions, Component, Directive, Plugin as Plugin$1, AppConfig, VNode, VNodeProps, ComponentPublicInstance, ComputedOptions, MethodOptions, CreateComponentPublicInstance, ComponentCustomProperties, App, ConcreteComponent, Prop, EmitsOptions, ComponentOptionsMixin, ExtractPropTypes, ExtractDefaultPropTypes, DefineComponent, ComponentOptionsWithoutProps, ComponentOptionsWithArrayProps, ComponentPropsOptions, ComponentOptionsWithObjectProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
interface RefSelector {
ref: string;
}
interface NameSelector {
name: string;
length?: never;
}
type FindAllComponentsSelector = DefinedComponent | FunctionalComponent | ComponentOptions | NameSelector | string;
type FindComponentSelector = RefSelector | FindAllComponentsSelector;
type Slot = VNode | string | {
render: Function;
} | Function | Component;
type SlotDictionary = {
[key: string]: Slot;
};
type RawProps = VNodeProps & {
__v_isVNode?: never;
[Symbol.iterator]?: never;
} & Record<string, any>;
interface MountingOptions$1<Props, Data = {}> {
/**
* Overrides component's default data. Must be a function.
* @see https://test-utils.vuejs.org/api/#data
*/
data?: () => {} extends Data ? any : Data extends object ? Partial<Data> : any;
/**
* Sets component props when mounted.
* @see https://test-utils.vuejs.org/api/#props
*/
props?: (RawProps & Props) | ({} extends Props ? null : never);
/**
* @deprecated use `props` instead.
*/
propsData?: Props;
/**
* Sets component attributes when mounted.
* @see https://test-utils.vuejs.org/api/#attrs
*/
attrs?: Record<string, unknown>;
/**
* Provide values for slots on a component.
* @see https://test-utils.vuejs.org/api/#slots
*/
slots?: SlotDictionary & {
default?: Slot;
};
/**
* Provides global mounting options to the component.
*/
global?: GlobalMountOptions$1;
/**
* Specify where to mount the component.
* Can be a valid CSS selector, or an Element connected to the document.
* @see https://test-utils.vuejs.org/api/#attachto
*/
attachTo?: HTMLElement | string;
/**
* Automatically stub out all the child components.
* @default false
* @see https://test-utils.vuejs.org/api/#slots
*/
shallow?: boolean;
}
type Stub = boolean | Component | Directive;
type Stubs = Record<string, Stub> | Array<string>;
type GlobalMountOptions$1 = {
/**
* Installs plugins on the component.
* @see https://test-utils.vuejs.org/api/#global-plugins
*/
plugins?: (Plugin$1 | [Plugin$1, ...any[]])[];
/**
* Customizes Vue application global configuration
* @see https://v3.vuejs.org/api/application-config.html#application-config
*/
config?: Partial<Omit<AppConfig, 'isNativeTag'>>;
/**
* Applies a mixin for components under testing.
* @see https://test-utils.vuejs.org/api/#global-mixins
*/
mixins?: ComponentOptions[];
/**
* Mocks a global instance property.
* This is designed to mock variables injected by third party plugins, not
* Vue's native properties such as $root, $children, etc.
* @see https://test-utils.vuejs.org/api/#global-mocks
*/
mocks?: Record<string, any>;
/**
* Provides data to be received in a setup function via `inject`.
* @see https://test-utils.vuejs.org/api/#global-provide
*/
provide?: Record<any, any>;
/**
* Registers components globally for components under testing.
* @see https://test-utils.vuejs.org/api/#global-components
*/
components?: Record<string, Component | object>;
/**
* Registers a directive globally for components under testing
* @see https://test-utils.vuejs.org/api/#global-directives
*/
directives?: Record<string, Directive>;
/**
* Stubs a component for components under testing.
* @default "{ transition: true, 'transition-group': true }"
* @see https://test-utils.vuejs.org/api/#global-stubs
*/
stubs?: Stubs;
/**
* Allows rendering the default slot content, even when using
* `shallow` or `shallowMount`.
* @default false
* @see https://test-utils.vuejs.org/api/#global-renderstubdefaultslot
*/
renderStubDefaultSlot?: boolean;
};
type VueNode<T extends Node = Node> = T & {
__vue_app__?: any;
__vueParentComponent?: ComponentInternalInstance;
};
type DefinedComponent = new (...args: any[]) => any;
type DomEventName = keyof typeof domEvents;
declare const systemKeyModifiers: readonly ["ctrl", "shift", "alt", "meta"];
declare const mouseKeyModifiers: readonly ["left", "middle", "right"];
declare const keyCodesByKeyName: {
readonly backspace: 8;
readonly tab: 9;
readonly enter: 13;
readonly esc: 27;
readonly space: 32;
readonly pageup: 33;
readonly pagedown: 34;
readonly end: 35;
readonly home: 36;
readonly left: 37;
readonly up: 38;
readonly right: 39;
readonly down: 40;
readonly insert: 45;
readonly delete: 46;
};
type DomEventNameWithModifier = DomEventName | `${DomEventName}.${(typeof systemKeyModifiers)[number]}` | `click.${(typeof mouseKeyModifiers)[number]}` | `click.${(typeof systemKeyModifiers)[number]}.${(typeof mouseKeyModifiers)[number]}` | `${'keydown' | 'keyup'}.${keyof typeof keyCodesByKeyName}` | `${'keydown' | 'keyup'}.${(typeof systemKeyModifiers)[number]}.${keyof typeof keyCodesByKeyName}`;
declare const domEvents: {
readonly abort: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly afterprint: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly animationend: {
readonly eventInterface: "AnimationEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly animationiteration: {
readonly eventInterface: "AnimationEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly animationstart: {
readonly eventInterface: "AnimationEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly appinstalled: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
/**
* @deprecated
*/
readonly audioprocess: {
readonly eventInterface: "AudioProcessingEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly audioend: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly audiostart: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly beforeprint: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly beforeunload: {
readonly eventInterface: "BeforeUnloadEvent";
readonly bubbles: false;
readonly cancelable: true;
};
readonly beginEvent: {
readonly eventInterface: "TimeEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly blur: {
readonly eventInterface: "FocusEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly boundary: {
readonly eventInterface: "SpeechSynthesisEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly cached: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly canplay: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly canplaythrough: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly change: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: false;
};
readonly chargingchange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly chargingtimechange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly checking: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly click: {
readonly eventInterface: "MouseEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly close: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly complete: {
readonly eventInterface: "OfflineAudioCompletionEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly compositionend: {
readonly eventInterface: "CompositionEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly compositionstart: {
readonly eventInterface: "CompositionEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly compositionupdate: {
readonly eventInterface: "CompositionEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly contextmenu: {
readonly eventInterface: "MouseEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly copy: {
readonly eventInterface: "ClipboardEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly cut: {
readonly eventInterface: "ClipboardEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly dblclick: {
readonly eventInterface: "MouseEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly devicechange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly devicelight: {
readonly eventInterface: "DeviceLightEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly devicemotion: {
readonly eventInterface: "DeviceMotionEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly deviceorientation: {
readonly eventInterface: "DeviceOrientationEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly deviceproximity: {
readonly eventInterface: "DeviceProximityEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly dischargingtimechange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly DOMActivate: {
readonly eventInterface: "UIEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMAttributeNameChanged: {
readonly eventInterface: "MutationNameEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMAttrModified: {
readonly eventInterface: "MutationEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMCharacterDataModified: {
readonly eventInterface: "MutationEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMContentLoaded: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMElementNameChanged: {
readonly eventInterface: "MutationNameEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMFocusIn: {
readonly eventInterface: "FocusEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMFocusOut: {
readonly eventInterface: "FocusEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMNodeInserted: {
readonly eventInterface: "MutationEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMNodeInsertedIntoDocument: {
readonly eventInterface: "MutationEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMNodeRemoved: {
readonly eventInterface: "MutationEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly DOMNodeRemovedFromDocument: {
readonly eventInterface: "MutationEvent";
readonly bubbles: true;
readonly cancelable: true;
};
/**
* @deprecated
*/
readonly DOMSubtreeModified: {
readonly eventInterface: "MutationEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly downloading: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly drag: {
readonly eventInterface: "DragEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly dragend: {
readonly eventInterface: "DragEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly dragenter: {
readonly eventInterface: "DragEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly dragleave: {
readonly eventInterface: "DragEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly dragover: {
readonly eventInterface: "DragEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly dragstart: {
readonly eventInterface: "DragEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly drop: {
readonly eventInterface: "DragEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly durationchange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly emptied: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly end: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly ended: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly endEvent: {
readonly eventInterface: "TimeEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly error: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly focus: {
readonly eventInterface: "FocusEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly focusin: {
readonly eventInterface: "FocusEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly focusout: {
readonly eventInterface: "FocusEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly fullscreenchange: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: false;
};
readonly fullscreenerror: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: false;
};
readonly gamepadconnected: {
readonly eventInterface: "GamepadEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly gamepaddisconnected: {
readonly eventInterface: "GamepadEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly gotpointercapture: {
readonly eventInterface: "PointerEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly hashchange: {
readonly eventInterface: "HashChangeEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly lostpointercapture: {
readonly eventInterface: "PointerEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly input: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: false;
};
readonly invalid: {
readonly eventInterface: "Event";
readonly cancelable: true;
readonly bubbles: false;
};
readonly keydown: {
readonly eventInterface: "KeyboardEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly keypress: {
readonly eventInterface: "KeyboardEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly keyup: {
readonly eventInterface: "KeyboardEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly languagechange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly levelchange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly load: {
readonly eventInterface: "UIEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly loadeddata: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly loadedmetadata: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly loadend: {
readonly eventInterface: "ProgressEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly loadstart: {
readonly eventInterface: "ProgressEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly mark: {
readonly eventInterface: "SpeechSynthesisEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly message: {
readonly eventInterface: "MessageEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly messageerror: {
readonly eventInterface: "MessageEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly mousedown: {
readonly eventInterface: "MouseEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly mouseenter: {
readonly eventInterface: "MouseEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly mouseleave: {
readonly eventInterface: "MouseEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly mousemove: {
readonly eventInterface: "MouseEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly mouseout: {
readonly eventInterface: "MouseEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly mouseover: {
readonly eventInterface: "MouseEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly mouseup: {
readonly eventInterface: "MouseEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly nomatch: {
readonly eventInterface: "SpeechRecognitionEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly notificationclick: {
readonly eventInterface: "NotificationEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly noupdate: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly obsolete: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly offline: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly online: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly open: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly orientationchange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly pagehide: {
readonly eventInterface: "PageTransitionEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly pageshow: {
readonly eventInterface: "PageTransitionEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly paste: {
readonly eventInterface: "ClipboardEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly pause: {
readonly eventInterface: "SpeechSynthesisEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly pointercancel: {
readonly eventInterface: "PointerEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly pointerdown: {
readonly eventInterface: "PointerEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly pointerenter: {
readonly eventInterface: "PointerEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly pointerleave: {
readonly eventInterface: "PointerEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly pointerlockchange: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: false;
};
readonly pointerlockerror: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: false;
};
readonly pointermove: {
readonly eventInterface: "PointerEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly pointerout: {
readonly eventInterface: "PointerEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly pointerover: {
readonly eventInterface: "PointerEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly pointerup: {
readonly eventInterface: "PointerEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly play: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly playing: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly popstate: {
readonly eventInterface: "PopStateEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly progress: {
readonly eventInterface: "ProgressEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly push: {
readonly eventInterface: "PushEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly pushsubscriptionchange: {
readonly eventInterface: "PushEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly ratechange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly readystatechange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly repeatEvent: {
readonly eventInterface: "TimeEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly reset: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: true;
};
readonly resize: {
readonly eventInterface: "UIEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly resourcetimingbufferfull: {
readonly eventInterface: "Performance";
readonly bubbles: true;
readonly cancelable: true;
};
readonly result: {
readonly eventInterface: "SpeechRecognitionEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly resume: {
readonly eventInterface: "SpeechSynthesisEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly scroll: {
readonly eventInterface: "UIEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly seeked: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly seeking: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly select: {
readonly eventInterface: "UIEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly selectstart: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: true;
};
readonly selectionchange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly show: {
readonly eventInterface: "MouseEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly slotchange: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: false;
};
readonly soundend: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly soundstart: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly speechend: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly speechstart: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly stalled: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly start: {
readonly eventInterface: "SpeechSynthesisEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly storage: {
readonly eventInterface: "StorageEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly submit: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: true;
};
readonly success: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly suspend: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly SVGAbort: {
readonly eventInterface: "SVGEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly SVGError: {
readonly eventInterface: "SVGEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly SVGLoad: {
readonly eventInterface: "SVGEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly SVGResize: {
readonly eventInterface: "SVGEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly SVGScroll: {
readonly eventInterface: "SVGEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly SVGUnload: {
readonly eventInterface: "SVGEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly SVGZoom: {
readonly eventInterface: "SVGZoomEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly timeout: {
readonly eventInterface: "ProgressEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly timeupdate: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly touchcancel: {
readonly eventInterface: "TouchEvent";
readonly bubbles: true;
readonly cancelable: false;
};
readonly touchend: {
readonly eventInterface: "TouchEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly touchmove: {
readonly eventInterface: "TouchEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly touchstart: {
readonly eventInterface: "TouchEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly transitionend: {
readonly eventInterface: "TransitionEvent";
readonly bubbles: true;
readonly cancelable: true;
};
readonly unload: {
readonly eventInterface: "UIEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly updateready: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly userproximity: {
readonly eventInterface: "UserProximityEvent";
readonly bubbles: false;
readonly cancelable: false;
};
readonly voiceschanged: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly visibilitychange: {
readonly eventInterface: "Event";
readonly bubbles: true;
readonly cancelable: false;
};
readonly volumechange: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly waiting: {
readonly eventInterface: "Event";
readonly bubbles: false;
readonly cancelable: false;
};
readonly wheel: {
readonly eventInterface: "WheelEvent";
readonly bubbles: true;
readonly cancelable: true;
};
};
interface TriggerOptions {
code?: String;
key?: String;
keyCode?: Number;
[custom: string]: any;
}
declare class DOMWrapper<NodeType extends Node> extends BaseWrapper<NodeType> {
constructor(element: NodeType | null | undefined);
getRootNodes(): VueNode<NodeType>[];
getCurrentComponent(): vue.ComponentInternalInstance | undefined;
find<K extends keyof HTMLElementTagNameMap>(selector: K): DOMWrapper<HTMLElementTagNameMap[K]>;
find<K extends keyof SVGElementTagNameMap>(selector: K): DOMWrapper<SVGElementTagNameMap[K]>;
find<T extends Element = Element>(selector: string): DOMWrapper<T>;
find<T extends Node = Node>(selector: string | RefSelector): DOMWrapper<T>;
findAll<K extends keyof HTMLElementTagNameMap>(selector: K): DOMWrapper<HTMLElementTagNameMap[K]>[];
findAll<K extends keyof SVGElementTagNameMap>(selector: K): DOMWrapper<SVGElementTagNameMap[K]>[];
findAll<T extends Element>(selector: string): DOMWrapper<T>[];
findAllComponents(selector: any): any;
private setChecked;
setValue(value?: any): Promise<void>;
private setSelected;
}
interface WrapperLike {
readonly element: Node;
find<K extends keyof HTMLElementTagNameMap>(selector: K): DOMWrapper<HTMLElementTagNameMap[K]>;
find<K extends keyof SVGElementTagNameMap>(selector: K): DOMWrapper<SVGElementTagNameMap[K]>;
find<T extends Element = Element>(selector: string): DOMWrapper<T>;
find<T extends Node = Node>(selector: string | RefSelector): DOMWrapper<T>;
findAll<K extends keyof HTMLElementTagNameMap>(selector: K): DOMWrapper<HTMLElementTagNameMap[K]>[];
findAll<K extends keyof SVGElementTagNameMap>(selector: K): DOMWrapper<SVGElementTagNameMap[K]>[];
findAll<T extends Element>(selector: string): DOMWrapper<T>[];
findAll(selector: string): DOMWrapper<Element>[];
findComponent<T extends never>(selector: string): WrapperLike;
findComponent<T extends DefinedComponent>(selector: T | Exclude<FindComponentSelector, FunctionalComponent>): VueWrapper<InstanceType<T>>;
findComponent<T extends FunctionalComponent>(selector: T | string): DOMWrapper<Element>;
findComponent<T extends never>(selector: NameSelector | RefSelector): VueWrapper;
findComponent<T extends ComponentPublicInstance>(selector: T | FindComponentSelector): VueWrapper<T>;
findComponent(selector: FindComponentSelector): WrapperLike;
findAllComponents<T extends never>(selector: string): WrapperLike[];
findAllComponents<T extends DefinedComponent>(selector: T | Exclude<FindAllComponentsSelector, FunctionalComponent>): VueWrapper<InstanceType<T>>[];
findAllComponents<T extends FunctionalComponent>(selector: string): DOMWrapper<Element>[];
findAllComponents<T extends FunctionalComponent>(selector: T): DOMWrapper<Node>[];
findAllComponents<T extends never>(selector: NameSelector): VueWrapper[];
findAllComponents<T extends ComponentPublicInstance>(selector: T | FindAllComponentsSelector): VueWrapper<T>[];
findAllComponents(selector: FindAllComponentsSelector): WrapperLike[];
get<K extends keyof HTMLElementTagNameMap>(selector: K): Omit<DOMWrapper<HTMLElementTagNameMap[K]>, 'exists'>;
get<K extends keyof SVGElementTagNameMap>(selector: K): Omit<DOMWrapper<SVGElementTagNameMap[K]>, 'exists'>;
get<T extends Element = Element>(selector: string): Omit<DOMWrapper<T>, 'exists'>;
get<T extends Node = Node>(selector: string | RefSelector): Omit<DOMWrapper<T>, 'exists'>;
getComponent<T extends never>(selector: string): Omit<WrapperLike, 'exists'>;
getComponent<T extends DefinedComponent>(selector: T | Exclude<FindComponentSelector, FunctionalComponent>): Omit<VueWrapper<InstanceType<T>>, 'exists'>;
getComponent<T extends FunctionalComponent>(selector: T | string): Omit<DOMWrapper<Element>, 'exists'>;
getComponent<T extends ComponentPublicInstance>(selector: T | FindComponentSelector): Omit<VueWrapper<T>, 'exists'>;
getComponent<T extends never>(selector: FindComponentSelector): Omit<WrapperLike, 'exists'>;
html(): string;
classes(): string[];
classes(className: string): boolean;
classes(className?: string): string[] | boolean;
attributes(): {
[key: string]: string;
};
attributes(key: string): string | undefined;
attributes(key?: string): {
[key: string]: string;
} | string | undefined;
text(): string;
exists(): boolean;
setValue(value: any): Promise<void>;
isVisible(): boolean;
trigger(eventString: DomEventNameWithModifier, options?: TriggerOptions): Promise<void>;
trigger(eventString: string, options?: TriggerOptions): Promise<void>;
}
declare abstract class BaseWrapper<ElementType extends Node> implements WrapperLike {
protected readonly wrapperElement: VueNode<ElementType>;
protected abstract getRootNodes(): VueNode[];
get element(): VueNode<ElementType>;
protected constructor(element: ElementType);
protected findAllDOMElements(selector: string): Element[];
find<K extends keyof HTMLElementTagNameMap>(selector: K): DOMWrapper<HTMLElementTagNameMap[K]>;
find<K extends keyof SVGElementTagNameMap>(selector: K): DOMWrapper<SVGElementTagNameMap[K]>;
find<T extends Element = Element>(selector: string): DOMWrapper<T>;
find<T extends Node = Node>(selector: string | RefSelector): DOMWrapper<T>;
abstract findAll<K extends keyof HTMLElementTagNameMap>(selector: K): DOMWrapper<HTMLElementTagNameMap[K]>[];
abstract findAll<K extends keyof SVGElementTagNameMap>(selector: K): DOMWrapper<SVGElementTagNameMap[K]>[];
abstract findAll<T extends Element>(selector: string): DOMWrapper<T>[];
abstract findAll(selector: string): DOMWrapper<Element>[];
findComponent<T extends never>(selector: string): WrapperLike;
findComponent<Props, RawBindings = any, D = any, C extends ComputedOptions = ComputedOptions, M extends MethodOptions = MethodOptions>(selector: ComponentOptions<Props, RawBindings, D, C, M>): VueWrapper<CreateComponentPublicInstance<Props, RawBindings, D, C, M>>;
findComponent<T extends ComponentOptions>(selector: string): VueWrapper<T extends ComponentOptions<infer Props, infer RawBindings, infer D, infer C, infer M> ? CreateComponentPublicInstance<Props, RawBindings, D, C, M> : VueWrapper<CreateComponentPublicInstance>>;
findComponent<T extends DefinedComponent>(selector: T | Exclude<FindComponentSelector, FunctionalComponent>): VueWrapper<InstanceType<T>>;
findComponent<T extends FunctionalComponent>(selector: T): DOMWrapper<Node>;
findComponent<T extends FunctionalComponent>(selector: string): DOMWrapper<Element>;
findComponent<T extends never>(selector: NameSelector | RefSelector): VueWrapper;
findComponent<T extends ComponentPublicInstance>(selector: T | FindComponentSelector): VueWrapper<T>;
findComponent<T extends never>(selector: FindComponentSelector): WrapperLike;
findAllComponents<T extends never>(selector: string): WrapperLike[];
findAllComponents<T extends DefinedComponent>(selector: T | Exclude<FindAllComponentsSelector, FunctionalComponent>): VueWrapper<InstanceType<T>>[];
findAllComponents<T extends FunctionalComponent>(selector: T): DOMWrapper<Node>[];
findAllComponents<T extends FunctionalComponent>(selector: string): DOMWrapper<Element>[];
findAllComponents<T extends never>(selector: NameSelector): VueWrapper[];
findAllComponents<T extends ComponentPublicInstance>(selector: T | FindAllComponentsSelector): VueWrapper<T>[];
findAllComponents<T extends never>(selector: FindAllComponentsSelector): WrapperLike[];
abstract setValue(value?: any): Promise<void>;
html(options?: {
raw?: boolean;
}): string;
classes(): string[];
classes(className: string): boolean;
attributes(): {
[key: string]: string;
};
attributes(key: string): string | undefined;
text(): string;
exists(): boolean;
get<K extends keyof HTMLElementTagNameMap>(selector: K): Omit<DOMWrapper<HTMLElementTagNameMap[K]>, 'exists'>;
get<K extends keyof SVGElementTagNameMap>(selector: K): Omit<DOMWrapper<SVGElementTagNameMap[K]>, 'exists'>;
get<T extends Element = Element>(selector: string): Omit<DOMWrapper<T>, 'exists'>;
get<T extends Node = Node>(selector: string | RefSelector): Omit<DOMWrapper<T>, 'exists'>;
getComponent<T extends never>(selector: string): Omit<WrapperLike, 'exists'>;
getComponent<T extends DefinedComponent>(selector: T | Exclude<FindComponentSelector, FunctionalComponent>): Omit<VueWrapper<InstanceType<T>>, 'exists'>;
getComponent<T extends FunctionalComponent>(selector: T | string): Omit<DOMWrapper<Element>, 'exists'>;
getComponent<T extends never>(selector: NameSelector | RefSelector): Omit<VueWrapper, 'exists'>;
getComponent<T extends ComponentPublicInstance>(selector: T | FindComponentSelector): Omit<VueWrapper<T>, 'exists'>;
getComponent<T extends never>(selector: FindComponentSelector): Omit<WrapperLike, 'exists'>;
protected isDisabled: () => boolean;
isVisible(): boolean;
protected abstract getCurrentComponent(): ComponentInternalInstance | void;
trigger(eventString: DomEventNameWithModifier, options?: TriggerOptions): Promise<void>;
trigger(eventString: string, options?: TriggerOptions): Promise<void>;
}
declare class VueWrapper<T extends Omit<ComponentPublicInstance, '$emit' | keyof ComponentCustomProperties> & {
$emit: (event: any, ...args: any[]) => void;
} & ComponentCustomProperties = ComponentPublicInstance> extends BaseWrapper<Node> {
private readonly componentVM;
private readonly rootVM;
private readonly __app;
private readonly __setProps;
private cleanUpCallbacks;
constructor(app: App | null, vm: T, setProps?: (props: Record<string, unknown>) => void);
private get hasMultipleRoots();
protected getRootNodes(): VueNode[];
private get parentElement();
getCurrentComponent(): vue.ComponentInternalInstance;
exists(): boolean;
findAll<K extends keyof HTMLElementTagNameMap>(selector: K): DOMWrapper<HTMLElementTagNameMap[K]>[];
findAll<K extends keyof SVGElementTagNameMap>(selector: K): DOMWrapper<SVGElementTagNameMap[K]>[];
findAll<T extends Element>(selector: string): DOMWrapper<T>[];
private attachNativeEventListener;
get element(): Element;
get vm(): T;
props(): {
[key: string]: any;
};
props(selector: string): any;
emitted<T = unknown>(): Record<string, T[]>;
emitted<T = unknown[]>(eventName: string): undefined | T[];
isVisible(): boolean;
setData(data: Record<string, unknown>): Promise<void>;
setProps(props: Record<string, unknown>): Promise<void>;
setValue(value: unknown, prop?: string): Promise<void>;
unmount(): void;
}
type CustomCreateStub = (params: {
name: string;
component: ConcreteComponent;
}) => ConcreteComponent;
interface GlobalConfigOptions {
global: Required<Omit<GlobalMountOptions$1, 'stubs'>> & {
stubs: Record<string, Stub>;
};
plugins: {
VueWrapper: Pluggable<VueWrapper>;
DOMWrapper: Pluggable<DOMWrapper<Node>>;
createStubs?: CustomCreateStub;
};
/**
* @deprecated use global.
*/
renderStubDefaultSlot?: boolean;
}
interface Plugin<Instance, O> {
handler(instance: Instance): Record<string, any>;
handler(instance: Instance, options: O): Record<string, any>;
options: O;
}
declare class Pluggable<Instance = DOMWrapper<Node>> {
installedPlugins: Plugin<Instance, any>[];
install<O>(handler: (instance: Instance) => Record<string, any>): void;
install<O>(handler: (instance: Instance, options: O) => Record<string, any>, options: O): void;
extend(instance: Instance): void;
/** For testing */
reset(): void;
}
type PublicProps$1 = VNodeProps & AllowedComponentProps & ComponentCustomProps;
type ComponentMountingOptions$1<T> = T extends DefineComponent<infer PropsOrPropOptions, any, infer D, any, any> ? MountingOptions$1<Partial<ExtractDefaultPropTypes<PropsOrPropOptions>> & Omit<Readonly<ExtractPropTypes<PropsOrPropOptions>> & PublicProps$1, keyof ExtractDefaultPropTypes<PropsOrPropOptions>>, D> & Record<string, any> : MountingOptions$1<any>;
declare function renderToString<V extends {}>(originalComponent: {
new (...args: any[]): V;
__vccOpts: any;
}, options?: MountingOptions$1<any> & Record<string, any>): Promise<string>;
declare function renderToString<V extends {}, P>(originalComponent: {
new (...args: any[]): V;
__vccOpts: any;
defaultProps?: Record<string, Prop<any>> | string[];
}, options?: MountingOptions$1<P & PublicProps$1> & Record<string, any>): Promise<string>;
declare function renderToString<V extends {}>(originalComponent: {
new (...args: any[]): V;
registerHooks(keys: string[]): void;
}, options?: MountingOptions$1<any> & Record<string, any>): Promise<string>;
declare function renderToString<V extends {}, P>(originalComponent: {
new (...args: any[]): V;
props(Props: P): any;
registerHooks(keys: string[]): void;
}, options?: MountingOptions$1<P & PublicProps$1> & Record<string, any>): Promise<string>;
declare function renderToString<Props extends {}, E extends EmitsOptions = {}>(originalComponent: FunctionalComponent<Props, E>, options?: MountingOptions$1<Props & PublicProps$1> & Record<string, any>): Promise<string>;
declare function renderToString<PropsOrPropOptions = {}, RawBindings = {}, D = {}, C extends ComputedOptions = ComputedOptions, M extends MethodOptions = MethodOptions, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = Record<string, any>, EE extends string = string, PP = PublicProps$1, Props = Readonly<ExtractPropTypes<PropsOrPropOptions>>, Defaults extends {} = ExtractDefaultPropTypes<PropsOrPropOptions>>(component: DefineComponent<PropsOrPropOptions, RawBindings, D, C, M, Mixin, Extends, E, EE, PP, Props, Defaults>, options?: MountingOptions$1<Partial<Defaults> & Omit<Props & PublicProps$1, keyof Defaults>, D> & Record<string, any>): Promise<string>;
declare function renderToString<T extends DefineComponent<any, any, any, any, any>>(component: T, options?: ComponentMountingOptions$1<T>): Promise<string>;
declare function renderToString<Props = {}, RawBindings = {}, D extends {} = {}, C extends ComputedOptions = {}, M extends Record<string, Function> = {}, E extends EmitsOptions = Record<string, any>, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, EE extends string = string>(componentOptions: ComponentOptionsWithoutProps<Props, RawBindings, D, C, M, E, Mixin, Extends, EE>, options?: MountingOptions$1<Props & PublicProps$1, D>): Promise<string>;
declare function renderToString<PropNames extends string, RawBindings, D extends {}, C extends ComputedOptions = {}, M extends Record<string, Function> = {}, E extends EmitsOptions = Record<string, any>, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, EE extends string = string, Props extends Readonly<{
[key in PropNames]?: any;
}> = Readonly<{
[key in PropNames]?: any;
}>>(componentOptions: ComponentOptionsWithArrayProps<PropNames, RawBindings, D, C, M, E, Mixin, Extends, EE, Props>, options?: MountingOptions$1<Props & PublicProps$1, D>): Promise<string>;
declare function renderToString<PropsOptions extends Readonly<ComponentPropsOptions>, RawBindings, D extends {}, C extends ComputedOptions = {}, M extends Record<string, Function> = {}, E extends EmitsOptions = Record<string, any>, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, EE extends string = string>(componentOptions: ComponentOptionsWithObjectProps<PropsOptions, RawBindings, D, C, M, E, Mixin, Extends, EE>, options?: MountingOptions$1<ExtractPropTypes<PropsOptions> & PublicProps$1, D>): Promise<string>;
declare function createWrapperError<T extends object>(wrapperType: 'DOMWrapper' | 'VueWrapper'): T;
declare function flushPromises(): Promise<unknown>;
declare function disableAutoUnmount(): void;
declare function enableAutoUnmount(hook: (callback: () => void) => void): void;
declare const VueTestUtils: {
renderToString: typeof renderToString;
enableAutoUnmount: typeof enableAutoUnmount;
disableAutoUnmount: typeof disableAutoUnmount;
RouterLinkStub: DefineComponent<{
to: {
type: (ObjectConstructor | StringConstructor)[];
required: true;
};
custom: {
type: BooleanConstructor;
default: boolean;
};
}, unknown, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
to: {
type: (ObjectConstructor | StringConstructor)[];
required: true;
};
custom: {
type: BooleanConstructor;
default: boolean;
};
}>>, {
custom: boolean;
}>;
VueWrapper: typeof VueWrapper;
DOMWrapper: typeof DOMWrapper;
BaseWrapper: typeof BaseWrapper;
config: GlobalConfigOptions;
flushPromises: typeof flushPromises;
createWrapperError: typeof createWrapperError;
};
declare type GlobalMountOptions = Required<MountingOptions$1<any>>['global'];
declare global {
namespace Cypress {
interface Cypress {
vueWrapper: VueWrapper<ComponentPublicInstance>;
vue: ComponentPublicInstance;
}
}
}
declare type MountingOptions<Props, Data = {}> = Omit<MountingOptions$1<Props, Data>, 'attachTo'> & {
log?: boolean;
/**
* @deprecated use vue-test-utils `global` instead
*/
extensions?: GlobalMountOptions & {
use?: GlobalMountOptions['plugins'];
mixin?: GlobalMountOptions['mixins'];
};
};
declare type CyMountOptions<Props, Data = {}> = MountingOptions<Props, Data>;
/**
* The types for mount have been copied directly from the VTU mount
* https://github.com/vuejs/vue-test-utils-next/blob/master/src/mount.ts.
*
* There isn't a good way to make them generic enough that we can extend them.
*
* In addition, we modify the types slightly.
*
* `MountOptions` are modifying, including some Cypress specific options like `styles`.
* The return type is different. Instead of VueWrapper, it's Cypress.Chainable<VueWrapper<...>>.
*/
declare type PublicProps = VNodeProps & AllowedComponentProps & ComponentCustomProps;
declare type ComponentMountingOptions<T> = T extends DefineComponent<infer PropsOrPropOptions, any, infer D, any, any> ? MountingOptions<Partial<ExtractDefaultPropTypes<PropsOrPropOptions>> & Omit<Readonly<ExtractPropTypes<PropsOrPropOptions>> & PublicProps, keyof ExtractDefaultPropTypes<PropsOrPropOptions>>, D> & Record<string, any> : MountingOptions<any>;
declare function mount<V extends {}>(originalComponent: {
new (...args: any[]): V;
__vccOpts: any;
}, options?: MountingOptions<any> & Record<string, any>): Cypress.Chainable<{
wrapper: VueWrapper<ComponentPublicInstance<V>>;
component: VueWrapper<ComponentPublicInstance<V>>['vm'];
}>;
declare function mount<V extends {}, P>(originalComponent: {
new (...args: any[]): V;
__vccOpts: any;
defaultProps?: Record<string, Prop<any>> | string[];
}, options?: MountingOptions<P & PublicProps> & Record<string, any>): Cypress.Chainable<{
wrapper: VueWrapper<ComponentPublicInstance<V>>;
component: VueWrapper<ComponentPublicInstance<V>>['vm'];
}>;
declare function mount<V extends {}>(originalComponent: {
new (...args: any[]): V;
registerHooks(keys: string[]): void;
}, options?: MountingOptions<any> & Record<string, any>): Cypress.Chainable<{
wrapper: VueWrapper<ComponentPublicInstance<V>>;
component: VueWrapper<ComponentPublicInstance<V>>['vm'];
}>;
declare function mount<V extends {}, P>(originalComponent: {
new (...args: any[]): V;
props(Props: P): any;
registerHooks(keys: string[]): void;
}, options?: MountingOptions<P & PublicProps> & Record<string, any>): Cypress.Chainable<{
wrapper: VueWrapper<ComponentPublicInstance<V>>;
component: VueWrapper<ComponentPublicInstance<V>>['vm'];
}>;
declare function mount<Props extends {}, E extends EmitsOptions = {}>(originalComponent: FunctionalComponent<Props, E>, options?: MountingOptions<Props & PublicProps> & Record<string, any>): Cypress.Chainable<{
wrapper: VueWrapper<ComponentPublicInstance<Props>>;
component: VueWrapper<ComponentPublicInstance<Props>>['vm'];
}>;
declare function mount<PropsOrPropOptions = {}, RawBindings = {}, D = {}, C extends ComputedOptions = ComputedOptions, M extends MethodOptions = MethodOptions, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = Record<string, any>, EE extends string = string, PP = PublicProps, Props = Readonly<ExtractPropTypes<PropsOrPropOptions>>, Defaults extends {} = ExtractDefaultPropTypes<PropsOrPropOptions>>(component: DefineComponent<PropsOrPropOptions, RawBindings, D, C, M, Mixin, Extends, E, EE, PP, Props, Defaults>, options?: MountingOptions<Partial<Defaults> & Omit<Props & PublicProps, keyof Defaults>, D> & Record<string, any>): Cypress.Chainable<{
wrapper: VueWrapper<InstanceType<DefineComponent<PropsOrPropOptions, RawBindings, D, C, M, Mixin, Extends, EmitsOptions, EE, PP, Props, Defaults>>>;
component: VueWrapper<InstanceType<DefineComponent<PropsOrPropOptions, RawBindings, D, C, M, Mixin, Extends, EmitsOptions, EE, PP, Props, Defaults>>>['vm'];
}>;
declare function mount<T extends DefineComponent<any, any, any, any, any>>(component: T, options?: ComponentMountingOptions<T>): Cypress.Chainable<{
wrapper: VueWrapper<InstanceType<T>>;
component: VueWrapper<InstanceType<T>>['vm'];
}>;
declare function mount<Props = {}, RawBindings = {}, D extends {} = {}, C extends ComputedOptions = {}, M extends Record<string, Function> = {}, E extends EmitsOptions = Record<string, any>, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, EE extends string = string>(componentOptions: ComponentOptionsWithoutProps<Props, RawBindings, D, C, M, E, Mixin, Extends, EE>, options?: MountingOptions<Props & PublicProps, D>): Cypress.Chainable<{
wrapper: VueWrapper<ComponentPublicInstance<Props, RawBindings, D, C, M, E, VNodeProps & Props>> & Record<string, any>;
component: VueWrapper<ComponentPublicInstance<Props, RawBindings, D, C, M, E, VNodeProps & Props>> & Record<string, any>['vm'];
}>;
declare function mount<PropNames extends string, RawBindings, D extends {}, C extends ComputedOptions = {}, M extends Record<string, Function> = {}, E extends EmitsOptions = Record<string, any>, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, EE extends string = string, Props extends Readonly<{
[key in PropNames]?: any;
}> = Readonly<{
[key in PropNames]?: any;
}>>(componentOptions: ComponentOptionsWithArrayProps<PropNames, RawBindings, D, C, M, E, Mixin, Extends, EE, Props>, options?: MountingOptions<Props & PublicProps, D>): Cypress.Chainable<{
wrapper: VueWrapper<ComponentPublicInstance<Props, RawBindings, D, C, M, E>>;
component: VueWrapper<ComponentPublicInstance<Props, RawBindings, D, C, M, E>>['vm'];
}>;
declare function mount<PropsOptions extends Readonly<ComponentPropsOptions>, RawBindings, D extends {}, C extends ComputedOptions = {}, M extends Record<string, Function> = {}, E extends EmitsOptions = Record<string, any>, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, EE extends string = string>(componentOptions: ComponentOptionsWithObjectProps<PropsOptions, RawBindings, D, C, M, E, Mixin, Extends, EE>, options?: MountingOptions<ExtractPropTypes<PropsOptions> & PublicProps, D>): Cypress.Chainable<{
wrapper: VueWrapper<ComponentPublicInstance<ExtractPropTypes<PropsOptions>, RawBindings, D, C, M, E, VNodeProps & ExtractPropTypes<PropsOptions>>>;
component: VueWrapper<ComponentPublicInstance<ExtractPropTypes<PropsOptions>, RawBindings, D, C, M, E, VNodeProps & ExtractPropTypes<PropsOptions>>>['vm'];
}>;
/**
* Helper function for mounting a component quickly in test hooks.
* @example
* import {mountCallback} from '@cypress/vue'
* beforeEach(mountVue(component, options))
*
* Removed as of Cypress 11.0.0.
* @see https://on.cypress.io/migration-11-0-0-component-testing-updates
*/
declare function mountCallback(component: any, options?: any): () => void;
export { CyMountOptions, VueTestUtils, mount, mountCallback };
|