@beastmode-develeap/beastmode 0.1.250 → 0.1.252
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/web/board.html
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
}
|
|
16
16
|
</script>
|
|
17
17
|
<!--BOARD_DATA-->
|
|
18
|
-
<script>window.__BUILD_STAMP__ = "20260514-
|
|
18
|
+
<script>window.__BUILD_STAMP__ = "20260514-124004-2bc6274";</script>
|
|
19
19
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
20
20
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
21
21
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
@@ -4777,13 +4777,14 @@ function swimlaneColor(colorKey) {
|
|
|
4777
4777
|
}
|
|
4778
4778
|
window.swimlaneColor = swimlaneColor;
|
|
4779
4779
|
|
|
4780
|
-
const _FIXTURE_NAME_RE = /^\[FIXTURE\]|^\[BM-VERIFY\]|^test[-_\s]|^
|
|
4780
|
+
const _FIXTURE_NAME_RE = /^\[FIXTURE\]|^\[BM-VERIFY\]|^test[-_\s]|^fixture[-_\s]|^smoke[-_\s]test\b|test[-_\s]item/i;
|
|
4781
4781
|
function _isFixtureItem(item) {
|
|
4782
4782
|
if (!item) return false;
|
|
4783
4783
|
if (item.task_type === 'test_fixture') return true;
|
|
4784
4784
|
const extra = item.extra || {};
|
|
4785
4785
|
if (extra && extra._bm_fixture) return true;
|
|
4786
|
-
|
|
4786
|
+
const taskType = item.task_type || '';
|
|
4787
|
+
if (taskType !== 'bug' && taskType !== 'bug-gc' && _FIXTURE_NAME_RE.test(item.name || '')) return true;
|
|
4787
4788
|
return false;
|
|
4788
4789
|
}
|
|
4789
4790
|
window._isFixtureItem = _isFixtureItem;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
2bc6274f158bee95600475972ce4a68063762964
|
package/dist/web/build-stamp.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
20260514-
|
|
1
|
+
20260514-124004-2bc6274
|