@testsmith/testblocks 0.8.6 → 0.8.8
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/dist/cli/executor.js +15 -0
- package/dist/cli/index.js +5 -1
- package/dist/client/assets/index-C5yUtTzz.css +1 -0
- package/dist/client/assets/index-DGmSW0q0.js +2195 -0
- package/dist/client/assets/{index-BLK0dtIi.js.map → index-DGmSW0q0.js.map} +1 -1
- package/dist/client/index.html +2 -2
- package/dist/core/types.d.ts +1 -0
- package/dist/server/executor.js +14 -0
- package/package.json +1 -1
- package/dist/client/assets/index-BLK0dtIi.js +0 -2195
- package/dist/client/assets/index-OxNH9dW-.css +0 -1
package/dist/client/index.html
CHANGED
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
overflow: hidden;
|
|
17
17
|
}
|
|
18
18
|
</style>
|
|
19
|
-
<script type="module" crossorigin src="/assets/index-
|
|
20
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
19
|
+
<script type="module" crossorigin src="/assets/index-DGmSW0q0.js"></script>
|
|
20
|
+
<link rel="stylesheet" crossorigin href="/assets/index-C5yUtTzz.css">
|
|
21
21
|
</head>
|
|
22
22
|
<body>
|
|
23
23
|
<div id="root"></div>
|
package/dist/core/types.d.ts
CHANGED
package/dist/server/executor.js
CHANGED
|
@@ -213,6 +213,20 @@ class TestExecutor {
|
|
|
213
213
|
if (!beforeAllFailed) {
|
|
214
214
|
// Run each test with beforeEach/afterEach
|
|
215
215
|
for (const test of testFile.tests) {
|
|
216
|
+
// Skip disabled tests
|
|
217
|
+
if (test.disabled) {
|
|
218
|
+
results.push({
|
|
219
|
+
testId: test.id,
|
|
220
|
+
testName: test.name,
|
|
221
|
+
status: 'skipped',
|
|
222
|
+
duration: 0,
|
|
223
|
+
steps: [],
|
|
224
|
+
error: { message: 'Test is disabled' },
|
|
225
|
+
startedAt: new Date().toISOString(),
|
|
226
|
+
finishedAt: new Date().toISOString(),
|
|
227
|
+
});
|
|
228
|
+
continue;
|
|
229
|
+
}
|
|
216
230
|
// Load data from file if specified
|
|
217
231
|
let testData = test.data;
|
|
218
232
|
if (test.dataFile && !testData) {
|