cypress 13.5.1 → 13.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/angular/angular/dist/index.js +37 -32
- package/angular/dist/index.js +37 -32
- package/package.json +3 -3
- package/types/cypress.d.ts +1 -1
- package/vue/dist/cypress-vue.cjs.js +56 -51
- package/vue/dist/cypress-vue.esm-bundler.js +43 -38
- package/vue/vue/dist/cypress-vue.cjs.js +56 -51
- package/vue/vue/dist/cypress-vue.esm-bundler.js +43 -38
@@ -12,40 +12,45 @@ import { Injectable, Component, EventEmitter, SimpleChange, ErrorHandler } from
|
|
12
12
|
import { getTestBed, TestComponentRenderer, TestBed } from '@angular/core/testing';
|
13
13
|
import { BrowserDynamicTestingModule, platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing';
|
14
14
|
|
15
|
-
/******************************************************************************
|
16
|
-
Copyright (c) Microsoft Corporation.
|
17
|
-
|
18
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
19
|
-
purpose with or without fee is hereby granted.
|
20
|
-
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
22
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
23
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
24
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
25
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
26
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
27
|
-
PERFORMANCE OF THIS SOFTWARE.
|
28
|
-
***************************************************************************** */
|
29
|
-
|
30
|
-
function __rest(s, e) {
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
}
|
41
|
-
|
42
|
-
function __decorate(decorators, target, key, desc) {
|
43
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
44
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
45
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
46
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
15
|
+
/******************************************************************************
|
16
|
+
Copyright (c) Microsoft Corporation.
|
17
|
+
|
18
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
19
|
+
purpose with or without fee is hereby granted.
|
20
|
+
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
22
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
23
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
24
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
25
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
26
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
27
|
+
PERFORMANCE OF THIS SOFTWARE.
|
28
|
+
***************************************************************************** */
|
29
|
+
|
30
|
+
function __rest(s, e) {
|
31
|
+
var t = {};
|
32
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
33
|
+
t[p] = s[p];
|
34
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
35
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
36
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
37
|
+
t[p[i]] = s[p[i]];
|
38
|
+
}
|
39
|
+
return t;
|
47
40
|
}
|
48
41
|
|
42
|
+
function __decorate(decorators, target, key, desc) {
|
43
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
44
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
45
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
46
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
47
|
+
}
|
48
|
+
|
49
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
50
|
+
var e = new Error(message);
|
51
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
52
|
+
};
|
53
|
+
|
49
54
|
const ROOT_SELECTOR = '[data-cy-root]';
|
50
55
|
/**
|
51
56
|
* Gets the root element used to mount the component.
|
package/angular/dist/index.js
CHANGED
@@ -12,40 +12,45 @@ import { Injectable, Component, EventEmitter, SimpleChange, ErrorHandler } from
|
|
12
12
|
import { getTestBed, TestComponentRenderer, TestBed } from '@angular/core/testing';
|
13
13
|
import { BrowserDynamicTestingModule, platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing';
|
14
14
|
|
15
|
-
/******************************************************************************
|
16
|
-
Copyright (c) Microsoft Corporation.
|
17
|
-
|
18
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
19
|
-
purpose with or without fee is hereby granted.
|
20
|
-
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
22
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
23
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
24
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
25
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
26
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
27
|
-
PERFORMANCE OF THIS SOFTWARE.
|
28
|
-
***************************************************************************** */
|
29
|
-
|
30
|
-
function __rest(s, e) {
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
}
|
41
|
-
|
42
|
-
function __decorate(decorators, target, key, desc) {
|
43
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
44
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
45
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
46
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
15
|
+
/******************************************************************************
|
16
|
+
Copyright (c) Microsoft Corporation.
|
17
|
+
|
18
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
19
|
+
purpose with or without fee is hereby granted.
|
20
|
+
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
22
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
23
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
24
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
25
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
26
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
27
|
+
PERFORMANCE OF THIS SOFTWARE.
|
28
|
+
***************************************************************************** */
|
29
|
+
|
30
|
+
function __rest(s, e) {
|
31
|
+
var t = {};
|
32
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
33
|
+
t[p] = s[p];
|
34
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
35
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
36
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
37
|
+
t[p[i]] = s[p[i]];
|
38
|
+
}
|
39
|
+
return t;
|
47
40
|
}
|
48
41
|
|
42
|
+
function __decorate(decorators, target, key, desc) {
|
43
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
44
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
45
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
46
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
47
|
+
}
|
48
|
+
|
49
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
50
|
+
var e = new Error(message);
|
51
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
52
|
+
};
|
53
|
+
|
49
54
|
const ROOT_SELECTOR = '[data-cy-root]';
|
50
55
|
/**
|
51
56
|
* Gets the root element used to mount the component.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "cypress",
|
3
|
-
"version": "13.
|
3
|
+
"version": "13.6.0",
|
4
4
|
"main": "index.js",
|
5
5
|
"scripts": {
|
6
6
|
"postinstall": "node index.js --exec install",
|
@@ -135,8 +135,8 @@
|
|
135
135
|
},
|
136
136
|
"buildInfo": {
|
137
137
|
"commitBranch": "develop",
|
138
|
-
"commitSha": "
|
139
|
-
"commitDate": "2023-11-
|
138
|
+
"commitSha": "9337e4e1e00b9455b50d42757a577459ad6829a3",
|
139
|
+
"commitDate": "2023-11-21T20:26:49.000Z",
|
140
140
|
"stable": true
|
141
141
|
},
|
142
142
|
"description": "Cypress is a next generation front end testing tool built for the modern web",
|
package/types/cypress.d.ts
CHANGED
@@ -12,51 +12,56 @@ var compilerDom = require('@vue/compiler-dom');
|
|
12
12
|
var serverRenderer = require('@vue/server-renderer');
|
13
13
|
|
14
14
|
function _interopNamespaceDefault(e) {
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
});
|
24
|
-
}
|
15
|
+
var n = Object.create(null);
|
16
|
+
if (e) {
|
17
|
+
Object.keys(e).forEach(function (k) {
|
18
|
+
if (k !== 'default') {
|
19
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
20
|
+
Object.defineProperty(n, k, d.get ? d : {
|
21
|
+
enumerable: true,
|
22
|
+
get: function () { return e[k]; }
|
25
23
|
});
|
26
|
-
|
27
|
-
|
28
|
-
|
24
|
+
}
|
25
|
+
});
|
26
|
+
}
|
27
|
+
n.default = e;
|
28
|
+
return Object.freeze(n);
|
29
29
|
}
|
30
30
|
|
31
31
|
var Vue__namespace = /*#__PURE__*/_interopNamespaceDefault(Vue);
|
32
32
|
|
33
|
-
/******************************************************************************
|
34
|
-
Copyright (c) Microsoft Corporation.
|
35
|
-
|
36
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
37
|
-
purpose with or without fee is hereby granted.
|
38
|
-
|
39
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
40
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
41
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
42
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
43
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
44
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
45
|
-
PERFORMANCE OF THIS SOFTWARE.
|
46
|
-
***************************************************************************** */
|
47
|
-
|
48
|
-
function __rest(s, e) {
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
33
|
+
/******************************************************************************
|
34
|
+
Copyright (c) Microsoft Corporation.
|
35
|
+
|
36
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
37
|
+
purpose with or without fee is hereby granted.
|
38
|
+
|
39
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
40
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
41
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
42
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
43
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
44
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
45
|
+
PERFORMANCE OF THIS SOFTWARE.
|
46
|
+
***************************************************************************** */
|
47
|
+
|
48
|
+
function __rest(s, e) {
|
49
|
+
var t = {};
|
50
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
51
|
+
t[p] = s[p];
|
52
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
53
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
54
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
55
|
+
t[p[i]] = s[p[i]];
|
56
|
+
}
|
57
|
+
return t;
|
58
58
|
}
|
59
59
|
|
60
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
61
|
+
var e = new Error(message);
|
62
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
63
|
+
};
|
64
|
+
|
60
65
|
const ROOT_SELECTOR = '[data-cy-root]';
|
61
66
|
/**
|
62
67
|
* Gets the root element used to mount the component.
|
@@ -8432,19 +8437,19 @@ function flushPromises() {
|
|
8432
8437
|
}
|
8433
8438
|
|
8434
8439
|
var _VueTestUtils = /*#__PURE__*/Object.freeze({
|
8435
|
-
|
8436
|
-
|
8437
|
-
|
8438
|
-
|
8439
|
-
|
8440
|
-
|
8441
|
-
|
8442
|
-
|
8443
|
-
|
8444
|
-
|
8445
|
-
|
8446
|
-
|
8447
|
-
|
8440
|
+
__proto__: null,
|
8441
|
+
BaseWrapper: BaseWrapper,
|
8442
|
+
DOMWrapper: DOMWrapper,
|
8443
|
+
RouterLinkStub: RouterLinkStub,
|
8444
|
+
VueWrapper: VueWrapper,
|
8445
|
+
config: config,
|
8446
|
+
createWrapperError: createWrapperError,
|
8447
|
+
disableAutoUnmount: disableAutoUnmount,
|
8448
|
+
enableAutoUnmount: enableAutoUnmount,
|
8449
|
+
flushPromises: flushPromises,
|
8450
|
+
mount: mount$1,
|
8451
|
+
renderToString: renderToString,
|
8452
|
+
shallowMount: shallowMount$1
|
8448
8453
|
});
|
8449
8454
|
|
8450
8455
|
const {
|
@@ -10,33 +10,38 @@ import { nextTick, defineComponent, computed, h, shallowReactive, reactive, isRe
|
|
10
10
|
import { compile } from '@vue/compiler-dom';
|
11
11
|
import { renderToString as renderToString$1 } from '@vue/server-renderer';
|
12
12
|
|
13
|
-
/******************************************************************************
|
14
|
-
Copyright (c) Microsoft Corporation.
|
15
|
-
|
16
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
17
|
-
purpose with or without fee is hereby granted.
|
18
|
-
|
19
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
20
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
21
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
22
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
23
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
24
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
25
|
-
PERFORMANCE OF THIS SOFTWARE.
|
26
|
-
***************************************************************************** */
|
27
|
-
|
28
|
-
function __rest(s, e) {
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
13
|
+
/******************************************************************************
|
14
|
+
Copyright (c) Microsoft Corporation.
|
15
|
+
|
16
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
17
|
+
purpose with or without fee is hereby granted.
|
18
|
+
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
20
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
21
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
22
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
23
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
24
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
25
|
+
PERFORMANCE OF THIS SOFTWARE.
|
26
|
+
***************************************************************************** */
|
27
|
+
|
28
|
+
function __rest(s, e) {
|
29
|
+
var t = {};
|
30
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
31
|
+
t[p] = s[p];
|
32
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
33
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
34
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
35
|
+
t[p[i]] = s[p[i]];
|
36
|
+
}
|
37
|
+
return t;
|
38
38
|
}
|
39
39
|
|
40
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
41
|
+
var e = new Error(message);
|
42
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
43
|
+
};
|
44
|
+
|
40
45
|
const ROOT_SELECTOR = '[data-cy-root]';
|
41
46
|
/**
|
42
47
|
* Gets the root element used to mount the component.
|
@@ -8412,19 +8417,19 @@ function flushPromises() {
|
|
8412
8417
|
}
|
8413
8418
|
|
8414
8419
|
var _VueTestUtils = /*#__PURE__*/Object.freeze({
|
8415
|
-
|
8416
|
-
|
8417
|
-
|
8418
|
-
|
8419
|
-
|
8420
|
-
|
8421
|
-
|
8422
|
-
|
8423
|
-
|
8424
|
-
|
8425
|
-
|
8426
|
-
|
8427
|
-
|
8420
|
+
__proto__: null,
|
8421
|
+
BaseWrapper: BaseWrapper,
|
8422
|
+
DOMWrapper: DOMWrapper,
|
8423
|
+
RouterLinkStub: RouterLinkStub,
|
8424
|
+
VueWrapper: VueWrapper,
|
8425
|
+
config: config,
|
8426
|
+
createWrapperError: createWrapperError,
|
8427
|
+
disableAutoUnmount: disableAutoUnmount,
|
8428
|
+
enableAutoUnmount: enableAutoUnmount,
|
8429
|
+
flushPromises: flushPromises,
|
8430
|
+
mount: mount$1,
|
8431
|
+
renderToString: renderToString,
|
8432
|
+
shallowMount: shallowMount$1
|
8428
8433
|
});
|
8429
8434
|
|
8430
8435
|
const {
|
@@ -12,51 +12,56 @@ var compilerDom = require('@vue/compiler-dom');
|
|
12
12
|
var serverRenderer = require('@vue/server-renderer');
|
13
13
|
|
14
14
|
function _interopNamespaceDefault(e) {
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
});
|
24
|
-
}
|
15
|
+
var n = Object.create(null);
|
16
|
+
if (e) {
|
17
|
+
Object.keys(e).forEach(function (k) {
|
18
|
+
if (k !== 'default') {
|
19
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
20
|
+
Object.defineProperty(n, k, d.get ? d : {
|
21
|
+
enumerable: true,
|
22
|
+
get: function () { return e[k]; }
|
25
23
|
});
|
26
|
-
|
27
|
-
|
28
|
-
|
24
|
+
}
|
25
|
+
});
|
26
|
+
}
|
27
|
+
n.default = e;
|
28
|
+
return Object.freeze(n);
|
29
29
|
}
|
30
30
|
|
31
31
|
var Vue__namespace = /*#__PURE__*/_interopNamespaceDefault(Vue);
|
32
32
|
|
33
|
-
/******************************************************************************
|
34
|
-
Copyright (c) Microsoft Corporation.
|
35
|
-
|
36
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
37
|
-
purpose with or without fee is hereby granted.
|
38
|
-
|
39
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
40
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
41
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
42
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
43
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
44
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
45
|
-
PERFORMANCE OF THIS SOFTWARE.
|
46
|
-
***************************************************************************** */
|
47
|
-
|
48
|
-
function __rest(s, e) {
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
33
|
+
/******************************************************************************
|
34
|
+
Copyright (c) Microsoft Corporation.
|
35
|
+
|
36
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
37
|
+
purpose with or without fee is hereby granted.
|
38
|
+
|
39
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
40
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
41
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
42
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
43
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
44
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
45
|
+
PERFORMANCE OF THIS SOFTWARE.
|
46
|
+
***************************************************************************** */
|
47
|
+
|
48
|
+
function __rest(s, e) {
|
49
|
+
var t = {};
|
50
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
51
|
+
t[p] = s[p];
|
52
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
53
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
54
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
55
|
+
t[p[i]] = s[p[i]];
|
56
|
+
}
|
57
|
+
return t;
|
58
58
|
}
|
59
59
|
|
60
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
61
|
+
var e = new Error(message);
|
62
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
63
|
+
};
|
64
|
+
|
60
65
|
const ROOT_SELECTOR = '[data-cy-root]';
|
61
66
|
/**
|
62
67
|
* Gets the root element used to mount the component.
|
@@ -8432,19 +8437,19 @@ function flushPromises() {
|
|
8432
8437
|
}
|
8433
8438
|
|
8434
8439
|
var _VueTestUtils = /*#__PURE__*/Object.freeze({
|
8435
|
-
|
8436
|
-
|
8437
|
-
|
8438
|
-
|
8439
|
-
|
8440
|
-
|
8441
|
-
|
8442
|
-
|
8443
|
-
|
8444
|
-
|
8445
|
-
|
8446
|
-
|
8447
|
-
|
8440
|
+
__proto__: null,
|
8441
|
+
BaseWrapper: BaseWrapper,
|
8442
|
+
DOMWrapper: DOMWrapper,
|
8443
|
+
RouterLinkStub: RouterLinkStub,
|
8444
|
+
VueWrapper: VueWrapper,
|
8445
|
+
config: config,
|
8446
|
+
createWrapperError: createWrapperError,
|
8447
|
+
disableAutoUnmount: disableAutoUnmount,
|
8448
|
+
enableAutoUnmount: enableAutoUnmount,
|
8449
|
+
flushPromises: flushPromises,
|
8450
|
+
mount: mount$1,
|
8451
|
+
renderToString: renderToString,
|
8452
|
+
shallowMount: shallowMount$1
|
8448
8453
|
});
|
8449
8454
|
|
8450
8455
|
const {
|
@@ -10,33 +10,38 @@ import { nextTick, defineComponent, computed, h, shallowReactive, reactive, isRe
|
|
10
10
|
import { compile } from '@vue/compiler-dom';
|
11
11
|
import { renderToString as renderToString$1 } from '@vue/server-renderer';
|
12
12
|
|
13
|
-
/******************************************************************************
|
14
|
-
Copyright (c) Microsoft Corporation.
|
15
|
-
|
16
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
17
|
-
purpose with or without fee is hereby granted.
|
18
|
-
|
19
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
20
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
21
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
22
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
23
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
24
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
25
|
-
PERFORMANCE OF THIS SOFTWARE.
|
26
|
-
***************************************************************************** */
|
27
|
-
|
28
|
-
function __rest(s, e) {
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
13
|
+
/******************************************************************************
|
14
|
+
Copyright (c) Microsoft Corporation.
|
15
|
+
|
16
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
17
|
+
purpose with or without fee is hereby granted.
|
18
|
+
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
20
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
21
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
22
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
23
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
24
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
25
|
+
PERFORMANCE OF THIS SOFTWARE.
|
26
|
+
***************************************************************************** */
|
27
|
+
|
28
|
+
function __rest(s, e) {
|
29
|
+
var t = {};
|
30
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
31
|
+
t[p] = s[p];
|
32
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
33
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
34
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
35
|
+
t[p[i]] = s[p[i]];
|
36
|
+
}
|
37
|
+
return t;
|
38
38
|
}
|
39
39
|
|
40
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
41
|
+
var e = new Error(message);
|
42
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
43
|
+
};
|
44
|
+
|
40
45
|
const ROOT_SELECTOR = '[data-cy-root]';
|
41
46
|
/**
|
42
47
|
* Gets the root element used to mount the component.
|
@@ -8412,19 +8417,19 @@ function flushPromises() {
|
|
8412
8417
|
}
|
8413
8418
|
|
8414
8419
|
var _VueTestUtils = /*#__PURE__*/Object.freeze({
|
8415
|
-
|
8416
|
-
|
8417
|
-
|
8418
|
-
|
8419
|
-
|
8420
|
-
|
8421
|
-
|
8422
|
-
|
8423
|
-
|
8424
|
-
|
8425
|
-
|
8426
|
-
|
8427
|
-
|
8420
|
+
__proto__: null,
|
8421
|
+
BaseWrapper: BaseWrapper,
|
8422
|
+
DOMWrapper: DOMWrapper,
|
8423
|
+
RouterLinkStub: RouterLinkStub,
|
8424
|
+
VueWrapper: VueWrapper,
|
8425
|
+
config: config,
|
8426
|
+
createWrapperError: createWrapperError,
|
8427
|
+
disableAutoUnmount: disableAutoUnmount,
|
8428
|
+
enableAutoUnmount: enableAutoUnmount,
|
8429
|
+
flushPromises: flushPromises,
|
8430
|
+
mount: mount$1,
|
8431
|
+
renderToString: renderToString,
|
8432
|
+
shallowMount: shallowMount$1
|
8428
8433
|
});
|
8429
8434
|
|
8430
8435
|
const {
|