mirror of
https://github.com/logos-messaging/logos-messaging-allure-js.git
synced 2026-01-19 16:33:21 +00:00
deploy: waku-org/js-waku@965d8f4152
This commit is contained in:
parent
d99d5f713e
commit
bc0e35bc78
40
6974/app.js
40
6974/app.js
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
{"uid":"b1a8273437954620fa374b796ffaacdd","children":[],"name":"behaviors"}
|
||||
@ -1 +0,0 @@
|
||||
{"uid":"4b4757e66a1912dae1a509f688f20b0f","children":[],"name":"categories"}
|
||||
@ -1 +0,0 @@
|
||||
{"uid":"83edc06c07f9ae9e47eb6dd1b683e4e2","children":[],"name":"packages"}
|
||||
@ -1 +0,0 @@
|
||||
{"uid":"98d3104e051c652961429bf95fa0b5d6","children":[],"name":"suites"}
|
||||
@ -1 +0,0 @@
|
||||
{"uid":"ab17fc5a4eb3bca4b216b548c7f9fcbc","children":[],"name":"timeline"}
|
||||
@ -1,11 +0,0 @@
|
||||
launch_status failed=0 1714492465000000000
|
||||
launch_status broken=0 1714492465000000000
|
||||
launch_status passed=0 1714492465000000000
|
||||
launch_status skipped=0 1714492465000000000
|
||||
launch_status unknown=0 1714492465000000000
|
||||
launch_time duration=0 1714492465000000000
|
||||
launch_time min_duration=0 1714492465000000000
|
||||
launch_time max_duration=0 1714492465000000000
|
||||
launch_time sum_duration=0 1714492465000000000
|
||||
launch_retries retries=0 1714492465000000000
|
||||
launch_retries run=0 1714492465000000000
|
||||
@ -1,10 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Allure Report summary mail</title>
|
||||
</head>
|
||||
<body>
|
||||
Mail body
|
||||
</body>
|
||||
</html>
|
||||
@ -1,11 +0,0 @@
|
||||
launch_status_failed 0
|
||||
launch_status_broken 0
|
||||
launch_status_passed 0
|
||||
launch_status_skipped 0
|
||||
launch_status_unknown 0
|
||||
launch_time_duration 0
|
||||
launch_time_min_duration 0
|
||||
launch_time_max_duration 0
|
||||
launch_time_sum_duration 0
|
||||
launch_retries_retries 0
|
||||
launch_retries_run 0
|
||||
BIN
6974/favicon.ico
BIN
6974/favicon.ico
Binary file not shown.
|
Before Width: | Height: | Size: 15 KiB |
@ -1 +0,0 @@
|
||||
[{"data":{}}]
|
||||
@ -1 +0,0 @@
|
||||
[{"data":{}}]
|
||||
@ -1 +0,0 @@
|
||||
[{"data":{"failed":0,"broken":0,"skipped":0,"passed":0,"unknown":0,"total":0}}]
|
||||
@ -1 +0,0 @@
|
||||
{}
|
||||
@ -1 +0,0 @@
|
||||
[{"data":{"run":0,"retry":0}}]
|
||||
@ -1,34 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Allure Report</title>
|
||||
<link rel="icon" href="favicon.ico">
|
||||
<link rel="stylesheet" type="text/css" href="styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="plugin/screen-diff/styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="alert"></div>
|
||||
<div id="content">
|
||||
<span class="spinner">
|
||||
<span class="spinner__circle"></span>
|
||||
</span>
|
||||
</div>
|
||||
<div id="popup"></div>
|
||||
<script src="app.js"></script>
|
||||
<script src="plugin/behaviors/index.js"></script>
|
||||
<script src="plugin/packages/index.js"></script>
|
||||
<script src="plugin/screen-diff/index.js"></script>
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FVWC4GKEYS"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-FVWC4GKEYS', {
|
||||
'allureVersion': 'dev',
|
||||
'reportUuid': 'c9e611c9-afbe-417b-afea-375cf108efa1',
|
||||
'single_file': false
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,206 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
allure.api.addTranslation('en', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: 'Behaviors'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'Features by stories',
|
||||
showAll: 'show all'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('ru', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: 'Функциональность'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'Функциональность',
|
||||
showAll: 'показать все'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('zh', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: '功能'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: '特性场景',
|
||||
showAll: '显示所有'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('de', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: 'Verhalten'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'Features nach Stories',
|
||||
showAll: 'Zeige alle'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('nl', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: 'Functionaliteit'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'Features en story’s',
|
||||
showAll: 'Toon alle'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('he', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: 'התנהגויות'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'תכונות לפי סיפורי משתמש',
|
||||
showAll: 'הצג הכול'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('br', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: 'Comportamentos'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'Funcionalidades por história',
|
||||
showAll: 'Mostrar tudo'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('ja', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: '振る舞い'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'ストーリー別の機能',
|
||||
showAll: '全て表示'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('es', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: 'Funcionalidades'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'Funcionalidades por Historias de Usuario',
|
||||
showAll: 'mostrar todo'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('kr', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: '동작'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: '스토리별 기능',
|
||||
showAll: '전체 보기'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('fr', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: 'Comportements'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'Thèmes par histoires',
|
||||
showAll: 'Montrer tout'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('pl', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: 'Zachowania'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'Funkcje według historii',
|
||||
showAll: 'pokaż wszystko'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('az', {
|
||||
tab: {
|
||||
behaviors: {
|
||||
name: 'Davranışlar'
|
||||
}
|
||||
},
|
||||
widget: {
|
||||
behaviors: {
|
||||
name: 'Hekayələr üzrə xüsusiyyətlər',
|
||||
showAll: 'hamısını göstər'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTab('behaviors', {
|
||||
title: 'tab.behaviors.name', icon: 'fa fa-list',
|
||||
route: 'behaviors(/)(:testGroup)(/)(:testResult)(/)(:testResultTab)(/)',
|
||||
onEnter: (function (testGroup, testResult, testResultTab) {
|
||||
return new allure.components.TreeLayout({
|
||||
testGroup: testGroup,
|
||||
testResult: testResult,
|
||||
testResultTab: testResultTab,
|
||||
tabName: 'tab.behaviors.name',
|
||||
baseUrl: 'behaviors',
|
||||
url: 'data/behaviors.json',
|
||||
csvUrl: 'data/behaviors.csv'
|
||||
});
|
||||
})
|
||||
});
|
||||
|
||||
allure.api.addWidget('widgets', 'behaviors', allure.components.WidgetStatusView.extend({
|
||||
rowTag: 'a',
|
||||
title: 'widget.behaviors.name',
|
||||
baseUrl: 'behaviors',
|
||||
showLinks: true
|
||||
}));
|
||||
@ -1,120 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
allure.api.addTranslation('en', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'Packages'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('ru', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'Пакеты'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('zh', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: '包'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('de', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'Pakete'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('nl', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'Packages'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('he', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'חבילות'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('br', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'Pacotes'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('ja', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'パッケージ'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('es', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'Paquetes'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('kr', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: '패키지'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('fr', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'Paquets'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('pl', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'Pakiety'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTranslation('az', {
|
||||
tab: {
|
||||
packages: {
|
||||
name: 'Paketlər'
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
allure.api.addTab('packages', {
|
||||
title: 'tab.packages.name', icon: 'fa fa-align-left',
|
||||
route: 'packages(/)(:testGroup)(/)(:testResult)(/)(:testResultTab)(/)',
|
||||
onEnter: (function (testGroup, testResult, testResultTab) {
|
||||
return new allure.components.TreeLayout({
|
||||
testGroup: testGroup,
|
||||
testResult: testResult,
|
||||
testResultTab: testResultTab,
|
||||
tabName: 'tab.packages.name',
|
||||
baseUrl: 'packages',
|
||||
url: 'data/packages.json'
|
||||
});
|
||||
})
|
||||
});
|
||||
@ -1,200 +0,0 @@
|
||||
(function () {
|
||||
var settings = allure.getPluginSettings('screen-diff', { diffType: 'diff' });
|
||||
|
||||
function renderImage(src) {
|
||||
return (
|
||||
'<div class="screen-diff__container">' +
|
||||
'<img class="screen-diff__image" src="' +
|
||||
src +
|
||||
'">' +
|
||||
'</div>'
|
||||
);
|
||||
}
|
||||
|
||||
function findImage(data, name) {
|
||||
if (data.testStage && data.testStage.attachments) {
|
||||
var matchedImage = data.testStage.attachments.filter(function (attachment) {
|
||||
return attachment.name === name;
|
||||
})[0];
|
||||
if (matchedImage) {
|
||||
return 'data/attachments/' + matchedImage.source;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
function renderDiffContent(type, diffImage, actualImage, expectedImage) {
|
||||
if (type === 'diff') {
|
||||
if (diffImage) {
|
||||
return renderImage(diffImage);
|
||||
}
|
||||
}
|
||||
if (type === 'overlay' && expectedImage) {
|
||||
return (
|
||||
'<div class="screen-diff__overlay screen-diff__container">' +
|
||||
'<img class="screen-diff__image" src="' +
|
||||
expectedImage +
|
||||
'">' +
|
||||
'<div class="screen-diff__image-over">' +
|
||||
'<img class="screen-diff__image" src="' +
|
||||
actualImage +
|
||||
'">' +
|
||||
'</div>' +
|
||||
'</div>'
|
||||
);
|
||||
}
|
||||
if (actualImage) {
|
||||
return renderImage(actualImage);
|
||||
}
|
||||
return 'No diff data provided';
|
||||
}
|
||||
|
||||
var TestResultView = Backbone.Marionette.View.extend({
|
||||
regions: {
|
||||
subView: '.screen-diff-view',
|
||||
},
|
||||
template: function () {
|
||||
return '<div class="screen-diff-view"></div>';
|
||||
},
|
||||
onRender: function () {
|
||||
var data = this.model.toJSON();
|
||||
var testType = data.labels.filter(function (label) {
|
||||
return label.name === 'testType';
|
||||
})[0];
|
||||
var diffImage = findImage(data, 'diff');
|
||||
var actualImage = findImage(data, 'actual');
|
||||
var expectedImage = findImage(data, 'expected');
|
||||
if (!testType || testType.value !== 'screenshotDiff') {
|
||||
return;
|
||||
}
|
||||
this.showChildView(
|
||||
'subView',
|
||||
new ScreenDiffView({
|
||||
diffImage: diffImage,
|
||||
actualImage: actualImage,
|
||||
expectedImage: expectedImage,
|
||||
}),
|
||||
);
|
||||
},
|
||||
});
|
||||
var ErrorView = Backbone.Marionette.View.extend({
|
||||
templateContext: function () {
|
||||
return this.options;
|
||||
},
|
||||
template: function (data) {
|
||||
return '<pre class="screen-diff-error">' + data.error + '</pre>';
|
||||
},
|
||||
});
|
||||
var AttachmentView = Backbone.Marionette.View.extend({
|
||||
regions: {
|
||||
subView: '.screen-diff-view',
|
||||
},
|
||||
template: function () {
|
||||
return '<div class="screen-diff-view"></div>';
|
||||
},
|
||||
onRender: function () {
|
||||
jQuery
|
||||
.getJSON(this.options.sourceUrl)
|
||||
.then(this.renderScreenDiffView.bind(this), this.renderErrorView.bind(this));
|
||||
},
|
||||
renderErrorView: function (error) {
|
||||
console.log(error);
|
||||
this.showChildView(
|
||||
'subView',
|
||||
new ErrorView({
|
||||
error: error.statusText,
|
||||
}),
|
||||
);
|
||||
},
|
||||
renderScreenDiffView: function (data) {
|
||||
this.showChildView(
|
||||
'subView',
|
||||
new ScreenDiffView({
|
||||
diffImage: data.diff,
|
||||
actualImage: data.actual,
|
||||
expectedImage: data.expected,
|
||||
}),
|
||||
);
|
||||
},
|
||||
});
|
||||
|
||||
var ScreenDiffView = Backbone.Marionette.View.extend({
|
||||
className: 'pane__section',
|
||||
events: function () {
|
||||
return {
|
||||
['click [name="screen-diff-type-' + this.cid + '"]']: 'onDiffTypeChange',
|
||||
'mousemove .screen-diff__overlay': 'onOverlayMove',
|
||||
};
|
||||
},
|
||||
initialize: function (options) {
|
||||
this.diffImage = options.diffImage;
|
||||
this.actualImage = options.actualImage;
|
||||
this.expectedImage = options.expectedImage;
|
||||
this.radioName = 'screen-diff-type-' + this.cid;
|
||||
},
|
||||
templateContext: function () {
|
||||
return {
|
||||
diffType: settings.get('diffType'),
|
||||
diffImage: this.diffImage,
|
||||
actualImage: this.actualImage,
|
||||
expectedImage: this.expectedImage,
|
||||
radioName: this.radioName,
|
||||
};
|
||||
},
|
||||
template: function (data) {
|
||||
if (!data.diffImage && !data.actualImage && !data.expectedImage) {
|
||||
return '';
|
||||
}
|
||||
|
||||
return (
|
||||
'<h3 class="pane__section-title">Screen Diff</h3>' +
|
||||
'<div class="screen-diff__content">' +
|
||||
'<div class="screen-diff__switchers">' +
|
||||
'<label><input type="radio" name="' +
|
||||
data.radioName +
|
||||
'" value="diff"> Show diff</label>' +
|
||||
'<label><input type="radio" name="' +
|
||||
data.radioName +
|
||||
'" value="overlay"> Show overlay</label>' +
|
||||
'</div>' +
|
||||
renderDiffContent(
|
||||
data.diffType,
|
||||
data.diffImage,
|
||||
data.actualImage,
|
||||
data.expectedImage,
|
||||
) +
|
||||
'</div>'
|
||||
);
|
||||
},
|
||||
adjustImageSize: function (event) {
|
||||
var overImage = this.$(event.target);
|
||||
overImage.width(overImage.width());
|
||||
},
|
||||
onRender: function () {
|
||||
const diffType = settings.get('diffType');
|
||||
this.$('[name="' + this.radioName + '"][value="' + diffType + '"]').prop(
|
||||
'checked',
|
||||
true,
|
||||
);
|
||||
if (diffType === 'overlay') {
|
||||
this.$('.screen-diff__image-over img').on('load', this.adjustImageSize.bind(this));
|
||||
}
|
||||
},
|
||||
onOverlayMove: function (event) {
|
||||
var pageX = event.pageX;
|
||||
var containerScroll = this.$('.screen-diff__container').scrollLeft();
|
||||
var elementX = event.currentTarget.getBoundingClientRect().left;
|
||||
var delta = pageX - elementX + containerScroll;
|
||||
this.$('.screen-diff__image-over').width(delta);
|
||||
},
|
||||
onDiffTypeChange: function (event) {
|
||||
settings.save('diffType', event.target.value);
|
||||
this.render();
|
||||
},
|
||||
});
|
||||
allure.api.addTestResultBlock(TestResultView, { position: 'before' });
|
||||
allure.api.addAttachmentViewer('application/vnd.allure.image.diff', {
|
||||
View: AttachmentView,
|
||||
icon: 'fa fa-exchange',
|
||||
});
|
||||
})();
|
||||
@ -1,30 +0,0 @@
|
||||
.screen-diff__switchers {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.screen-diff__switchers label + label {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.screen-diff__overlay {
|
||||
position: relative;
|
||||
cursor: col-resize;
|
||||
}
|
||||
|
||||
.screen-diff__container {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.screen-diff__image-over {
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
background: #fff;
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
box-shadow: 2px 0 1px -1px #aaa;
|
||||
}
|
||||
|
||||
.screen-diff-error {
|
||||
color: #fd5a3e;
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
{"total":0,"items":[]}
|
||||
@ -1 +0,0 @@
|
||||
[{"data":{}}]
|
||||
@ -1 +0,0 @@
|
||||
{"total":0,"items":[]}
|
||||
@ -1 +0,0 @@
|
||||
[{"data":{}}]
|
||||
@ -1 +0,0 @@
|
||||
[]
|
||||
@ -1 +0,0 @@
|
||||
[]
|
||||
@ -1 +0,0 @@
|
||||
[]
|
||||
@ -1 +0,0 @@
|
||||
[{"data":{"failed":0,"broken":0,"skipped":0,"passed":0,"unknown":0,"total":0}}]
|
||||
@ -1 +0,0 @@
|
||||
[]
|
||||
@ -1 +0,0 @@
|
||||
[{"data":{"run":0,"retry":0}}]
|
||||
@ -1 +0,0 @@
|
||||
[]
|
||||
@ -1 +0,0 @@
|
||||
[]
|
||||
@ -1 +0,0 @@
|
||||
{"total":0,"items":[]}
|
||||
@ -1 +0,0 @@
|
||||
{"reportName":"Allure Report","testRuns":[],"statistic":{"failed":0,"broken":0,"skipped":0,"passed":0,"unknown":0,"total":0},"time":{}}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1608
7002/data/suites.csv
1608
7002/data/suites.csv
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/102d05ce9b3eab8d.json
Normal file
1
7002/data/test-cases/102d05ce9b3eab8d.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1101d2e3d5f42377.json
Normal file
1
7002/data/test-cases/1101d2e3d5f42377.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/11899f84837a19ab.json
Normal file
1
7002/data/test-cases/11899f84837a19ab.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/11e4b7e7881163fd.json
Normal file
1
7002/data/test-cases/11e4b7e7881163fd.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1290303a4f712e90.json
Normal file
1
7002/data/test-cases/1290303a4f712e90.json
Normal file
@ -0,0 +1 @@
|
||||
{"uid":"1290303a4f712e90","name":"should throw an error for non-numeric clusterId: /waku/2/rs/y/1","fullName":"/src/common/sharding.spec.ts: pubsubTopicToSingleShardInfo with various invalid formats > should throw an error for non-numeric clusterId: /waku/2/rs/y/1","historyId":"301873950451259b886c914449e4aecb:d41d8cd98f00b204e9800998ecf8427e","time":{"start":1715247386001,"stop":1715247386001,"duration":0},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"package","value":"src.common"},{"name":"parentSuite","value":"pubsubTopicToSingleShardInfo with various invalid formats"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"5de4dcdd27f5e3e5","reportUrl":"https://waku-org.github.io/js-waku/7004//#testresult/5de4dcdd27f5e3e5","status":"passed","time":{"start":1715244142942,"stop":1715244142942,"duration":0}},{"uid":"5f0cfd379dd365e4","reportUrl":"https://waku-org.github.io/js-waku/7002//#testresult/5f0cfd379dd365e4","status":"passed","time":{"start":1715243647325,"stop":1715243647325,"duration":0}},{"uid":"55b3c7e9e9b703aa","reportUrl":"https://waku-org.github.io/js-waku/7001//#testresult/55b3c7e9e9b703aa","status":"passed","time":{"start":1715243223361,"stop":1715243223362,"duration":1}},{"uid":"1cec53a4fa3ebba1","reportUrl":"https://waku-org.github.io/js-waku/7000//#testresult/1cec53a4fa3ebba1","status":"passed","time":{"start":1715222528693,"stop":1715222528693,"duration":0}},{"uid":"176bf3d93c27befb","reportUrl":"https://waku-org.github.io/js-waku/6999//#testresult/176bf3d93c27befb","status":"passed","time":{"start":1715183020596,"stop":1715183020597,"duration":1}},{"uid":"4f0530e91f15aae0","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/4f0530e91f15aae0","status":"passed","time":{"start":1715182090335,"stop":1715182090336,"duration":1}},{"uid":"19e6e36eeddedbfd","reportUrl":"https://waku-org.github.io/js-waku/6998//#testresult/19e6e36eeddedbfd","status":"passed","time":{"start":1715177586568,"stop":1715177586568,"duration":0}},{"uid":"efe932c873fe46ae","reportUrl":"https://waku-org.github.io/js-waku/6997//#testresult/efe932c873fe46ae","status":"passed","time":{"start":1715104916073,"stop":1715104916074,"duration":1}},{"uid":"7d45b0160af38c55","reportUrl":"https://waku-org.github.io/js-waku/6996//#testresult/7d45b0160af38c55","status":"passed","time":{"start":1715102851787,"stop":1715102851787,"duration":0}},{"uid":"9135e9404b2b84b1","reportUrl":"https://waku-org.github.io/js-waku/6995//#testresult/9135e9404b2b84b1","status":"passed","time":{"start":1715093383964,"stop":1715093383965,"duration":1}},{"uid":"39eb8ba366cd9918","reportUrl":"https://waku-org.github.io/js-waku/6994//#testresult/39eb8ba366cd9918","status":"passed","time":{"start":1715092972368,"stop":1715092972369,"duration":1}},{"uid":"10b1e5e892d87575","reportUrl":"https://waku-org.github.io/js-waku/6992//#testresult/10b1e5e892d87575","status":"passed","time":{"start":1715090217239,"stop":1715090217239,"duration":0}},{"uid":"655e7e90c3eeaa58","reportUrl":"https://waku-org.github.io/js-waku/6993//#testresult/655e7e90c3eeaa58","status":"passed","time":{"start":1715090500754,"stop":1715090500754,"duration":0}},{"uid":"4d7be259d4f065e7","reportUrl":"https://waku-org.github.io/js-waku/6991//#testresult/4d7be259d4f065e7","status":"passed","time":{"start":1715089786283,"stop":1715089786283,"duration":0}},{"uid":"9af55f130fb7d491","reportUrl":"https://waku-org.github.io/js-waku/6990//#testresult/9af55f130fb7d491","status":"passed","time":{"start":1715089492928,"stop":1715089492928,"duration":0}},{"uid":"132100fb4bab06d9","reportUrl":"https://waku-org.github.io/js-waku/6989//#testresult/132100fb4bab06d9","status":"passed","time":{"start":1715066056731,"stop":1715066056731,"duration":0}},{"uid":"48cf054ce2b9872b","reportUrl":"https://waku-org.github.io/js-waku/6988//#testresult/48cf054ce2b9872b","status":"passed","time":{"start":1715065061004,"stop":1715065061005,"duration":1}},{"uid":"3c6f970521c7e3c0","reportUrl":"https://waku-org.github.io/js-waku/6987//#testresult/3c6f970521c7e3c0","status":"passed","time":{"start":1715064615126,"stop":1715064615127,"duration":1}},{"uid":"efe7476a48b8948e","reportUrl":"https://waku-org.github.io/js-waku/6986//#testresult/efe7476a48b8948e","status":"passed","time":{"start":1715064268499,"stop":1715064268499,"duration":0}},{"uid":"2095ab330b566eed","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/2095ab330b566eed","status":"passed","time":{"start":1715039244606,"stop":1715039244607,"duration":1}}]},"tags":[]},"source":"1290303a4f712e90.json","parameterValues":[]}
|
||||
1
7002/data/test-cases/12d6880c4a4c1f8b.json
Normal file
1
7002/data/test-cases/12d6880c4a4c1f8b.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/12f25169f3bc1e81.json
Normal file
1
7002/data/test-cases/12f25169f3bc1e81.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/134d3409e7bf91ae.json
Normal file
1
7002/data/test-cases/134d3409e7bf91ae.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/134e95f79af17d7c.json
Normal file
1
7002/data/test-cases/134e95f79af17d7c.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/13bb539d40d63a33.json
Normal file
1
7002/data/test-cases/13bb539d40d63a33.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/13f1aaf4c6276460.json
Normal file
1
7002/data/test-cases/13f1aaf4c6276460.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1410725a576e2d20.json
Normal file
1
7002/data/test-cases/1410725a576e2d20.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/14373f2eb719c56b.json
Normal file
1
7002/data/test-cases/14373f2eb719c56b.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1488943606f73d7c.json
Normal file
1
7002/data/test-cases/1488943606f73d7c.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/153d02a8f0eef684.json
Normal file
1
7002/data/test-cases/153d02a8f0eef684.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/15b103dd9ce18ae4.json
Normal file
1
7002/data/test-cases/15b103dd9ce18ae4.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1687992922f03cd2.json
Normal file
1
7002/data/test-cases/1687992922f03cd2.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/168d0d9d129aadb6.json
Normal file
1
7002/data/test-cases/168d0d9d129aadb6.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/174dff08c9d1863c.json
Normal file
1
7002/data/test-cases/174dff08c9d1863c.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1758e3091faf5468.json
Normal file
1
7002/data/test-cases/1758e3091faf5468.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/17939b26ba4ea025.json
Normal file
1
7002/data/test-cases/17939b26ba4ea025.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/179dcc978a93baae.json
Normal file
1
7002/data/test-cases/179dcc978a93baae.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/17dac8e32151feda.json
Normal file
1
7002/data/test-cases/17dac8e32151feda.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/17e9671c1068c5b0.json
Normal file
1
7002/data/test-cases/17e9671c1068c5b0.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/17ea9ceeeeff7d4a.json
Normal file
1
7002/data/test-cases/17ea9ceeeeff7d4a.json
Normal file
@ -0,0 +1 @@
|
||||
{"uid":"17ea9ceeeeff7d4a","name":"should correctly map /app/22/sometopic/someencoding to shard index 2","fullName":"/src/common/sharding.spec.ts: contentTopicToShardIndex > should correctly map /app/22/sometopic/someencoding to shard index 2","historyId":"987ff145fe6454d79585f705b2d1b097:d41d8cd98f00b204e9800998ecf8427e","time":{"start":1715247385990,"stop":1715247385990,"duration":0},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"package","value":"src.common"},{"name":"parentSuite","value":"contentTopicToShardIndex"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"e582aedd258c47b1","reportUrl":"https://waku-org.github.io/js-waku/7004//#testresult/e582aedd258c47b1","status":"passed","time":{"start":1715244142928,"stop":1715244142928,"duration":0}},{"uid":"4ced5dcfa4d078b5","reportUrl":"https://waku-org.github.io/js-waku/7002//#testresult/4ced5dcfa4d078b5","status":"passed","time":{"start":1715243647315,"stop":1715243647315,"duration":0}},{"uid":"b7e15ea9a5133802","reportUrl":"https://waku-org.github.io/js-waku/7001//#testresult/b7e15ea9a5133802","status":"passed","time":{"start":1715243223346,"stop":1715243223347,"duration":1}},{"uid":"24a4fac2cbeb349d","reportUrl":"https://waku-org.github.io/js-waku/7000//#testresult/24a4fac2cbeb349d","status":"passed","time":{"start":1715222528678,"stop":1715222528679,"duration":1}},{"uid":"ab3a5420844351","reportUrl":"https://waku-org.github.io/js-waku/6999//#testresult/ab3a5420844351","status":"passed","time":{"start":1715183020582,"stop":1715183020582,"duration":0}},{"uid":"f9a45ecbb9156a52","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/f9a45ecbb9156a52","status":"passed","time":{"start":1715182090321,"stop":1715182090321,"duration":0}},{"uid":"fd99b6019a61d319","reportUrl":"https://waku-org.github.io/js-waku/6998//#testresult/fd99b6019a61d319","status":"passed","time":{"start":1715177586553,"stop":1715177586553,"duration":0}},{"uid":"9595538a371fdd38","reportUrl":"https://waku-org.github.io/js-waku/6997//#testresult/9595538a371fdd38","status":"passed","time":{"start":1715104916059,"stop":1715104916060,"duration":1}},{"uid":"3b785469e570343","reportUrl":"https://waku-org.github.io/js-waku/6996//#testresult/3b785469e570343","status":"passed","time":{"start":1715102851773,"stop":1715102851774,"duration":1}},{"uid":"f6db7722e62392ac","reportUrl":"https://waku-org.github.io/js-waku/6995//#testresult/f6db7722e62392ac","status":"passed","time":{"start":1715093383949,"stop":1715093383950,"duration":1}},{"uid":"aed0121e3d630b10","reportUrl":"https://waku-org.github.io/js-waku/6994//#testresult/aed0121e3d630b10","status":"passed","time":{"start":1715092972355,"stop":1715092972355,"duration":0}},{"uid":"d2284d1ef16b4b68","reportUrl":"https://waku-org.github.io/js-waku/6992//#testresult/d2284d1ef16b4b68","status":"passed","time":{"start":1715090217225,"stop":1715090217225,"duration":0}},{"uid":"985f21bd449c7cd0","reportUrl":"https://waku-org.github.io/js-waku/6993//#testresult/985f21bd449c7cd0","status":"passed","time":{"start":1715090500740,"stop":1715090500740,"duration":0}},{"uid":"e9e387f66d910079","reportUrl":"https://waku-org.github.io/js-waku/6991//#testresult/e9e387f66d910079","status":"passed","time":{"start":1715089786262,"stop":1715089786262,"duration":0}},{"uid":"a28aa8fd1008524","reportUrl":"https://waku-org.github.io/js-waku/6990//#testresult/a28aa8fd1008524","status":"passed","time":{"start":1715089492918,"stop":1715089492918,"duration":0}},{"uid":"1389fdd49005f359","reportUrl":"https://waku-org.github.io/js-waku/6989//#testresult/1389fdd49005f359","status":"passed","time":{"start":1715066056717,"stop":1715066056717,"duration":0}},{"uid":"341723667c8315fd","reportUrl":"https://waku-org.github.io/js-waku/6988//#testresult/341723667c8315fd","status":"passed","time":{"start":1715065060991,"stop":1715065060991,"duration":0}},{"uid":"a5483c9390bdd4a1","reportUrl":"https://waku-org.github.io/js-waku/6987//#testresult/a5483c9390bdd4a1","status":"passed","time":{"start":1715064615115,"stop":1715064615116,"duration":1}},{"uid":"6121d20f6aaf62b1","reportUrl":"https://waku-org.github.io/js-waku/6986//#testresult/6121d20f6aaf62b1","status":"passed","time":{"start":1715064268489,"stop":1715064268489,"duration":0}},{"uid":"2f0cd46898ac2915","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/2f0cd46898ac2915","status":"passed","time":{"start":1715039244593,"stop":1715039244593,"duration":0}}]},"tags":[]},"source":"17ea9ceeeeff7d4a.json","parameterValues":[]}
|
||||
1
7002/data/test-cases/182b361b0ff1298d.json
Normal file
1
7002/data/test-cases/182b361b0ff1298d.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/184b50b30e20f82f.json
Normal file
1
7002/data/test-cases/184b50b30e20f82f.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/18853413e375a5e3.json
Normal file
1
7002/data/test-cases/18853413e375a5e3.json
Normal file
@ -0,0 +1 @@
|
||||
{"uid":"18853413e375a5e3","name":"should throw an error if shards are undefined for static sharding","fullName":"/src/common/sharding.spec.ts: shardInfoToPubsubTopics > should throw an error if shards are undefined for static sharding","historyId":"faf8b7bc8120dfec2a6508665a827bc1:d41d8cd98f00b204e9800998ecf8427e","time":{"start":1715247385998,"stop":1715247385998,"duration":0},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"package","value":"src.common"},{"name":"parentSuite","value":"shardInfoToPubsubTopics"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4cc45cb125099bdd","reportUrl":"https://waku-org.github.io/js-waku/7004//#testresult/4cc45cb125099bdd","status":"passed","time":{"start":1715244142938,"stop":1715244142938,"duration":0}},{"uid":"78356308ef14caab","reportUrl":"https://waku-org.github.io/js-waku/7002//#testresult/78356308ef14caab","status":"passed","time":{"start":1715243647322,"stop":1715243647322,"duration":0}},{"uid":"e85c8d9a5e9316cd","reportUrl":"https://waku-org.github.io/js-waku/7001//#testresult/e85c8d9a5e9316cd","status":"passed","time":{"start":1715243223357,"stop":1715243223357,"duration":0}},{"uid":"7ea532b7a819a111","reportUrl":"https://waku-org.github.io/js-waku/7000//#testresult/7ea532b7a819a111","status":"passed","time":{"start":1715222528689,"stop":1715222528689,"duration":0}},{"uid":"f944da02c49458fa","reportUrl":"https://waku-org.github.io/js-waku/6999//#testresult/f944da02c49458fa","status":"passed","time":{"start":1715183020592,"stop":1715183020592,"duration":0}},{"uid":"45be7f505662013","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/45be7f505662013","status":"passed","time":{"start":1715182090331,"stop":1715182090331,"duration":0}},{"uid":"bbaca8076e9c4a4","reportUrl":"https://waku-org.github.io/js-waku/6998//#testresult/bbaca8076e9c4a4","status":"passed","time":{"start":1715177586564,"stop":1715177586564,"duration":0}},{"uid":"75f760b7aade44ac","reportUrl":"https://waku-org.github.io/js-waku/6997//#testresult/75f760b7aade44ac","status":"passed","time":{"start":1715104916069,"stop":1715104916069,"duration":0}},{"uid":"ad311d92c31d3bfd","reportUrl":"https://waku-org.github.io/js-waku/6996//#testresult/ad311d92c31d3bfd","status":"passed","time":{"start":1715102851783,"stop":1715102851783,"duration":0}},{"uid":"9e843494c30b13ee","reportUrl":"https://waku-org.github.io/js-waku/6995//#testresult/9e843494c30b13ee","status":"passed","time":{"start":1715093383960,"stop":1715093383960,"duration":0}},{"uid":"ae8e0eb1f9791ba2","reportUrl":"https://waku-org.github.io/js-waku/6994//#testresult/ae8e0eb1f9791ba2","status":"passed","time":{"start":1715092972364,"stop":1715092972365,"duration":1}},{"uid":"38eed41f53cd8c4e","reportUrl":"https://waku-org.github.io/js-waku/6992//#testresult/38eed41f53cd8c4e","status":"passed","time":{"start":1715090217235,"stop":1715090217235,"duration":0}},{"uid":"edcc6040551298e9","reportUrl":"https://waku-org.github.io/js-waku/6993//#testresult/edcc6040551298e9","status":"passed","time":{"start":1715090500750,"stop":1715090500750,"duration":0}},{"uid":"33433f63cd48c951","reportUrl":"https://waku-org.github.io/js-waku/6991//#testresult/33433f63cd48c951","status":"passed","time":{"start":1715089786279,"stop":1715089786279,"duration":0}},{"uid":"209de5191f21480e","reportUrl":"https://waku-org.github.io/js-waku/6990//#testresult/209de5191f21480e","status":"passed","time":{"start":1715089492925,"stop":1715089492925,"duration":0}},{"uid":"cae13fb9e73e95ec","reportUrl":"https://waku-org.github.io/js-waku/6989//#testresult/cae13fb9e73e95ec","status":"passed","time":{"start":1715066056727,"stop":1715066056727,"duration":0}},{"uid":"39293756737cf35e","reportUrl":"https://waku-org.github.io/js-waku/6988//#testresult/39293756737cf35e","status":"passed","time":{"start":1715065061001,"stop":1715065061001,"duration":0}},{"uid":"fdd156a9a85ba36d","reportUrl":"https://waku-org.github.io/js-waku/6987//#testresult/fdd156a9a85ba36d","status":"passed","time":{"start":1715064615123,"stop":1715064615124,"duration":1}},{"uid":"78bcc0d32408cb03","reportUrl":"https://waku-org.github.io/js-waku/6986//#testresult/78bcc0d32408cb03","status":"passed","time":{"start":1715064268496,"stop":1715064268497,"duration":1}},{"uid":"97d08b1eab14568b","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/97d08b1eab14568b","status":"passed","time":{"start":1715039244603,"stop":1715039244603,"duration":0}}]},"tags":[]},"source":"18853413e375a5e3.json","parameterValues":[]}
|
||||
1
7002/data/test-cases/18f664a527ab673e.json
Normal file
1
7002/data/test-cases/18f664a527ab673e.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1a252d374b359013.json
Normal file
1
7002/data/test-cases/1a252d374b359013.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1a3246c0a7ab8a59.json
Normal file
1
7002/data/test-cases/1a3246c0a7ab8a59.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1a6b14a97f8122da.json
Normal file
1
7002/data/test-cases/1a6b14a97f8122da.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1b2ea47279c81b4f.json
Normal file
1
7002/data/test-cases/1b2ea47279c81b4f.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1b78944ae299bcb0.json
Normal file
1
7002/data/test-cases/1b78944ae299bcb0.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1c240946c5543edc.json
Normal file
1
7002/data/test-cases/1c240946c5543edc.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1c4ee7322ea1186e.json
Normal file
1
7002/data/test-cases/1c4ee7322ea1186e.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1c79e2a8ac67450f.json
Normal file
1
7002/data/test-cases/1c79e2a8ac67450f.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1c7e8eeb25685543.json
Normal file
1
7002/data/test-cases/1c7e8eeb25685543.json
Normal file
@ -0,0 +1 @@
|
||||
{"uid":"1c7e8eeb25685543","name":"should correctly map /app/27/sometopic/someencoding to shard index 5","fullName":"/src/common/sharding.spec.ts: contentTopicToShardIndex > should correctly map /app/27/sometopic/someencoding to shard index 5","historyId":"262bfb6950cf3e4e0b89ddc41ae29436:d41d8cd98f00b204e9800998ecf8427e","time":{"start":1715247385990,"stop":1715247385990,"duration":0},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"package","value":"src.common"},{"name":"parentSuite","value":"contentTopicToShardIndex"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"36acce6a2b655e52","reportUrl":"https://waku-org.github.io/js-waku/7004//#testresult/36acce6a2b655e52","status":"passed","time":{"start":1715244142928,"stop":1715244142929,"duration":1}},{"uid":"5c29388365102238","reportUrl":"https://waku-org.github.io/js-waku/7002//#testresult/5c29388365102238","status":"passed","time":{"start":1715243647315,"stop":1715243647315,"duration":0}},{"uid":"1d9b58ffb901e0eb","reportUrl":"https://waku-org.github.io/js-waku/7001//#testresult/1d9b58ffb901e0eb","status":"passed","time":{"start":1715243223347,"stop":1715243223347,"duration":0}},{"uid":"dcde682d8774c8a0","reportUrl":"https://waku-org.github.io/js-waku/7000//#testresult/dcde682d8774c8a0","status":"passed","time":{"start":1715222528679,"stop":1715222528679,"duration":0}},{"uid":"f7b29b7cfef0a93d","reportUrl":"https://waku-org.github.io/js-waku/6999//#testresult/f7b29b7cfef0a93d","status":"passed","time":{"start":1715183020582,"stop":1715183020582,"duration":0}},{"uid":"6392f93f7ed8ad36","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/6392f93f7ed8ad36","status":"passed","time":{"start":1715182090322,"stop":1715182090322,"duration":0}},{"uid":"491ac91c5acbe35","reportUrl":"https://waku-org.github.io/js-waku/6998//#testresult/491ac91c5acbe35","status":"passed","time":{"start":1715177586553,"stop":1715177586554,"duration":1}},{"uid":"3e1d3bc274e7f850","reportUrl":"https://waku-org.github.io/js-waku/6997//#testresult/3e1d3bc274e7f850","status":"passed","time":{"start":1715104916060,"stop":1715104916060,"duration":0}},{"uid":"d5bf616f4ca471df","reportUrl":"https://waku-org.github.io/js-waku/6996//#testresult/d5bf616f4ca471df","status":"passed","time":{"start":1715102851774,"stop":1715102851774,"duration":0}},{"uid":"e7d7637b4f2520ec","reportUrl":"https://waku-org.github.io/js-waku/6995//#testresult/e7d7637b4f2520ec","status":"passed","time":{"start":1715093383950,"stop":1715093383950,"duration":0}},{"uid":"ff949b6b84998be4","reportUrl":"https://waku-org.github.io/js-waku/6994//#testresult/ff949b6b84998be4","status":"passed","time":{"start":1715092972355,"stop":1715092972355,"duration":0}},{"uid":"ca6b2ddcf28efb81","reportUrl":"https://waku-org.github.io/js-waku/6992//#testresult/ca6b2ddcf28efb81","status":"passed","time":{"start":1715090217225,"stop":1715090217226,"duration":1}},{"uid":"7ffe0fe827bbcd93","reportUrl":"https://waku-org.github.io/js-waku/6993//#testresult/7ffe0fe827bbcd93","status":"passed","time":{"start":1715090500740,"stop":1715090500740,"duration":0}},{"uid":"9b35941eb9a2617","reportUrl":"https://waku-org.github.io/js-waku/6991//#testresult/9b35941eb9a2617","status":"passed","time":{"start":1715089786263,"stop":1715089786263,"duration":0}},{"uid":"7349f437cb062744","reportUrl":"https://waku-org.github.io/js-waku/6990//#testresult/7349f437cb062744","status":"passed","time":{"start":1715089492918,"stop":1715089492918,"duration":0}},{"uid":"1d70cd78cbb3afeb","reportUrl":"https://waku-org.github.io/js-waku/6989//#testresult/1d70cd78cbb3afeb","status":"passed","time":{"start":1715066056717,"stop":1715066056717,"duration":0}},{"uid":"84601febfe1c9463","reportUrl":"https://waku-org.github.io/js-waku/6988//#testresult/84601febfe1c9463","status":"passed","time":{"start":1715065060991,"stop":1715065060992,"duration":1}},{"uid":"b052786ade76d3b2","reportUrl":"https://waku-org.github.io/js-waku/6987//#testresult/b052786ade76d3b2","status":"passed","time":{"start":1715064615116,"stop":1715064615116,"duration":0}},{"uid":"115462f44b4606ce","reportUrl":"https://waku-org.github.io/js-waku/6986//#testresult/115462f44b4606ce","status":"passed","time":{"start":1715064268490,"stop":1715064268490,"duration":0}},{"uid":"5c15db5273471a0e","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/5c15db5273471a0e","status":"passed","time":{"start":1715039244593,"stop":1715039244593,"duration":0}}]},"tags":[]},"source":"1c7e8eeb25685543.json","parameterValues":[]}
|
||||
1
7002/data/test-cases/1d0c4695496d0eed.json
Normal file
1
7002/data/test-cases/1d0c4695496d0eed.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1db15b5f5fe075cb.json
Normal file
1
7002/data/test-cases/1db15b5f5fe075cb.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1e34c44b9f320a53.json
Normal file
1
7002/data/test-cases/1e34c44b9f320a53.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1e6e5f9b54bcf78d.json
Normal file
1
7002/data/test-cases/1e6e5f9b54bcf78d.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1f399bdc4959aeb0.json
Normal file
1
7002/data/test-cases/1f399bdc4959aeb0.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1f47ddee2d620155.json
Normal file
1
7002/data/test-cases/1f47ddee2d620155.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1f5bd5edac657902.json
Normal file
1
7002/data/test-cases/1f5bd5edac657902.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1f9fbfbc71cda6e4.json
Normal file
1
7002/data/test-cases/1f9fbfbc71cda6e4.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1fa92f9c3d2deebe.json
Normal file
1
7002/data/test-cases/1fa92f9c3d2deebe.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/1fe9191b97103399.json
Normal file
1
7002/data/test-cases/1fe9191b97103399.json
Normal file
@ -0,0 +1 @@
|
||||
{"uid":"1fe9191b97103399","name":"should return valid sharding parameters for content topics autosharding","fullName":"/src/common/sharding.spec.ts: ensureShardingConfigured > should return valid sharding parameters for content topics autosharding","historyId":"709ec0fac496e27ee4fe40642aee4232:d41d8cd98f00b204e9800998ecf8427e","time":{"start":1715247386008,"stop":1715247386008,"duration":0},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"package","value":"src.common"},{"name":"parentSuite","value":"ensureShardingConfigured"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"4a1cd858338ff5f1","reportUrl":"https://waku-org.github.io/js-waku/7004//#testresult/4a1cd858338ff5f1","status":"passed","time":{"start":1715244142950,"stop":1715244142951,"duration":1}},{"uid":"1f32057c7f870678","reportUrl":"https://waku-org.github.io/js-waku/7002//#testresult/1f32057c7f870678","status":"passed","time":{"start":1715243647332,"stop":1715243647332,"duration":0}},{"uid":"1057afd30e1bc16e","reportUrl":"https://waku-org.github.io/js-waku/7001//#testresult/1057afd30e1bc16e","status":"passed","time":{"start":1715243223371,"stop":1715243223371,"duration":0}},{"uid":"737677cd22b2aecc","reportUrl":"https://waku-org.github.io/js-waku/7000//#testresult/737677cd22b2aecc","status":"passed","time":{"start":1715222528702,"stop":1715222528702,"duration":0}},{"uid":"74f847ac60187e4c","reportUrl":"https://waku-org.github.io/js-waku/6999//#testresult/74f847ac60187e4c","status":"passed","time":{"start":1715183020604,"stop":1715183020605,"duration":1}},{"uid":"a06b4d9a47e6c535","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/a06b4d9a47e6c535","status":"passed","time":{"start":1715182090345,"stop":1715182090345,"duration":0}},{"uid":"6d62f9fe1c0f5713","reportUrl":"https://waku-org.github.io/js-waku/6998//#testresult/6d62f9fe1c0f5713","status":"passed","time":{"start":1715177586578,"stop":1715177586579,"duration":1}},{"uid":"42e60e79433620e4","reportUrl":"https://waku-org.github.io/js-waku/6997//#testresult/42e60e79433620e4","status":"passed","time":{"start":1715104916083,"stop":1715104916083,"duration":0}},{"uid":"2ea011677d12452d","reportUrl":"https://waku-org.github.io/js-waku/6996//#testresult/2ea011677d12452d","status":"passed","time":{"start":1715102851795,"stop":1715102851796,"duration":1}},{"uid":"5b17118ad89a2b3","reportUrl":"https://waku-org.github.io/js-waku/6995//#testresult/5b17118ad89a2b3","status":"passed","time":{"start":1715093383974,"stop":1715093383974,"duration":0}},{"uid":"860ebc3575ae15fe","reportUrl":"https://waku-org.github.io/js-waku/6994//#testresult/860ebc3575ae15fe","status":"passed","time":{"start":1715092972377,"stop":1715092972377,"duration":0}},{"uid":"e83033e29bbd3e6e","reportUrl":"https://waku-org.github.io/js-waku/6992//#testresult/e83033e29bbd3e6e","status":"passed","time":{"start":1715090217248,"stop":1715090217248,"duration":0}},{"uid":"e18def70a53665bd","reportUrl":"https://waku-org.github.io/js-waku/6993//#testresult/e18def70a53665bd","status":"passed","time":{"start":1715090500761,"stop":1715090500761,"duration":0}},{"uid":"febfb13422e8af69","reportUrl":"https://waku-org.github.io/js-waku/6991//#testresult/febfb13422e8af69","status":"passed","time":{"start":1715089786293,"stop":1715089786293,"duration":0}},{"uid":"102a19e36b6cdc52","reportUrl":"https://waku-org.github.io/js-waku/6990//#testresult/102a19e36b6cdc52","status":"passed","time":{"start":1715089492935,"stop":1715089492935,"duration":0}},{"uid":"69fe60251e9fbd76","reportUrl":"https://waku-org.github.io/js-waku/6989//#testresult/69fe60251e9fbd76","status":"passed","time":{"start":1715066056740,"stop":1715066056740,"duration":0}},{"uid":"7835183582d611b7","reportUrl":"https://waku-org.github.io/js-waku/6988//#testresult/7835183582d611b7","status":"passed","time":{"start":1715065061013,"stop":1715065061014,"duration":1}},{"uid":"4e54080c83df6b63","reportUrl":"https://waku-org.github.io/js-waku/6987//#testresult/4e54080c83df6b63","status":"passed","time":{"start":1715064615133,"stop":1715064615134,"duration":1}},{"uid":"78f53468a6ac4505","reportUrl":"https://waku-org.github.io/js-waku/6986//#testresult/78f53468a6ac4505","status":"passed","time":{"start":1715064268506,"stop":1715064268506,"duration":0}},{"uid":"6d6e3e2f6cd9c80e","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/6d6e3e2f6cd9c80e","status":"passed","time":{"start":1715039244616,"stop":1715039244616,"duration":0}}]},"tags":[]},"source":"1fe9191b97103399.json","parameterValues":[]}
|
||||
1
7002/data/test-cases/205f4a684de8e981.json
Normal file
1
7002/data/test-cases/205f4a684de8e981.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/20d46f83fd5827c0.json
Normal file
1
7002/data/test-cases/20d46f83fd5827c0.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/20e5c65153352c57.json
Normal file
1
7002/data/test-cases/20e5c65153352c57.json
Normal file
@ -0,0 +1 @@
|
||||
{"uid":"20e5c65153352c57","name":"groups multiple content topics into the same pubsub topic when they share the same shard index","fullName":"/src/common/sharding.spec.ts: contentTopicsByPubsubTopic > groups multiple content topics into the same pubsub topic when they share the same shard index","historyId":"54abfe08d33c4a35d94bfd1c2d4a82fa:d41d8cd98f00b204e9800998ecf8427e","time":{"start":1715247385993,"stop":1715247385993,"duration":0},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[],"labels":[{"name":"package","value":"src.common"},{"name":"parentSuite","value":"contentTopicsByPubsubTopic"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"1154ceed5d9a5598","reportUrl":"https://waku-org.github.io/js-waku/7004//#testresult/1154ceed5d9a5598","status":"passed","time":{"start":1715244142932,"stop":1715244142932,"duration":0}},{"uid":"5a0a8b04cd751e6b","reportUrl":"https://waku-org.github.io/js-waku/7002//#testresult/5a0a8b04cd751e6b","status":"passed","time":{"start":1715243647317,"stop":1715243647318,"duration":1}},{"uid":"2a54e64756351d96","reportUrl":"https://waku-org.github.io/js-waku/7001//#testresult/2a54e64756351d96","status":"passed","time":{"start":1715243223350,"stop":1715243223350,"duration":0}},{"uid":"7f76b44d94667840","reportUrl":"https://waku-org.github.io/js-waku/7000//#testresult/7f76b44d94667840","status":"passed","time":{"start":1715222528682,"stop":1715222528682,"duration":0}},{"uid":"51d60afcf25ec697","reportUrl":"https://waku-org.github.io/js-waku/6999//#testresult/51d60afcf25ec697","status":"passed","time":{"start":1715183020586,"stop":1715183020586,"duration":0}},{"uid":"dbbbc8773e4397f3","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/dbbbc8773e4397f3","status":"passed","time":{"start":1715182090325,"stop":1715182090325,"duration":0}},{"uid":"cee76083db884534","reportUrl":"https://waku-org.github.io/js-waku/6998//#testresult/cee76083db884534","status":"passed","time":{"start":1715177586557,"stop":1715177586557,"duration":0}},{"uid":"4fb4d1cd26549f0a","reportUrl":"https://waku-org.github.io/js-waku/6997//#testresult/4fb4d1cd26549f0a","status":"passed","time":{"start":1715104916063,"stop":1715104916063,"duration":0}},{"uid":"38de19f87a8e55a7","reportUrl":"https://waku-org.github.io/js-waku/6996//#testresult/38de19f87a8e55a7","status":"passed","time":{"start":1715102851777,"stop":1715102851777,"duration":0}},{"uid":"8df01b6e8f9df345","reportUrl":"https://waku-org.github.io/js-waku/6995//#testresult/8df01b6e8f9df345","status":"passed","time":{"start":1715093383953,"stop":1715093383954,"duration":1}},{"uid":"a42f83f3e8a78eee","reportUrl":"https://waku-org.github.io/js-waku/6994//#testresult/a42f83f3e8a78eee","status":"passed","time":{"start":1715092972358,"stop":1715092972359,"duration":1}},{"uid":"70b019080f1858a4","reportUrl":"https://waku-org.github.io/js-waku/6992//#testresult/70b019080f1858a4","status":"passed","time":{"start":1715090217229,"stop":1715090217229,"duration":0}},{"uid":"3709d02693e41cfb","reportUrl":"https://waku-org.github.io/js-waku/6993//#testresult/3709d02693e41cfb","status":"passed","time":{"start":1715090500743,"stop":1715090500744,"duration":1}},{"uid":"5600f496c2a383d","reportUrl":"https://waku-org.github.io/js-waku/6991//#testresult/5600f496c2a383d","status":"passed","time":{"start":1715089786270,"stop":1715089786270,"duration":0}},{"uid":"c781cc0e92bcbb1","reportUrl":"https://waku-org.github.io/js-waku/6990//#testresult/c781cc0e92bcbb1","status":"passed","time":{"start":1715089492920,"stop":1715089492921,"duration":1}},{"uid":"bd5ac38311811b6f","reportUrl":"https://waku-org.github.io/js-waku/6989//#testresult/bd5ac38311811b6f","status":"passed","time":{"start":1715066056720,"stop":1715066056721,"duration":1}},{"uid":"5ba53bf1ff2eebf4","reportUrl":"https://waku-org.github.io/js-waku/6988//#testresult/5ba53bf1ff2eebf4","status":"passed","time":{"start":1715065060994,"stop":1715065060995,"duration":1}},{"uid":"2464fa1c5fad876c","reportUrl":"https://waku-org.github.io/js-waku/6987//#testresult/2464fa1c5fad876c","status":"passed","time":{"start":1715064615119,"stop":1715064615119,"duration":0}},{"uid":"b65c5c6381c68a41","reportUrl":"https://waku-org.github.io/js-waku/6986//#testresult/b65c5c6381c68a41","status":"passed","time":{"start":1715064268492,"stop":1715064268492,"duration":0}},{"uid":"2abfffff52523897","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/2abfffff52523897","status":"passed","time":{"start":1715039244596,"stop":1715039244597,"duration":1}}]},"tags":[]},"source":"20e5c65153352c57.json","parameterValues":[]}
|
||||
1
7002/data/test-cases/211e5e3f915bc377.json
Normal file
1
7002/data/test-cases/211e5e3f915bc377.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/212956711d145a23.json
Normal file
1
7002/data/test-cases/212956711d145a23.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/216803a84aed61c9.json
Normal file
1
7002/data/test-cases/216803a84aed61c9.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/21a0243a4443fa81.json
Normal file
1
7002/data/test-cases/21a0243a4443fa81.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/21afbb6949a48b8c.json
Normal file
1
7002/data/test-cases/21afbb6949a48b8c.json
Normal file
@ -0,0 +1 @@
|
||||
{"uid":"21afbb6949a48b8c","name":"can dial TLS multiaddrs","fullName":"/tests/multiaddr.node.spec.ts: multiaddr: dialing > can dial TLS multiaddrs","historyId":"0f604f8aded1bbebd545fd5ec78c8d9b:d41d8cd98f00b204e9800998ecf8427e","time":{"start":1715247696232,"stop":1715247696232,"duration":0},"status":"passed","flaky":false,"newFailed":false,"newBroken":false,"newPassed":false,"retriesCount":0,"retriesStatusChange":false,"beforeStages":[],"afterStages":[{"name":"\"after each\" hook in \"multiaddr: dialing\"","time":{},"status":"passed","steps":[],"attachments":[],"parameters":[],"shouldDisplayMessage":false,"stepsCount":0,"attachmentsCount":0,"hasContent":false,"attachmentStep":false}],"labels":[{"name":"package","value":"tests"},{"name":"parentSuite","value":"multiaddr: dialing"},{"name":"resultFormat","value":"allure2"}],"parameters":[],"links":[],"hidden":false,"retry":false,"extra":{"severity":"normal","retries":[],"categories":[],"history":{"statistic":{"failed":0,"broken":0,"skipped":0,"passed":34,"unknown":0,"total":34},"items":[{"uid":"3e4294fc5a1e1e30","reportUrl":"https://waku-org.github.io/js-waku/7004//#testresult/3e4294fc5a1e1e30","status":"passed","time":{"start":1715244469784,"stop":1715244469785,"duration":1}},{"uid":"867ceb521827820b","reportUrl":"https://waku-org.github.io/js-waku/7002//#testresult/867ceb521827820b","status":"passed","time":{"start":1715243947042,"stop":1715243947042,"duration":0}},{"uid":"4d7324d34437849c","reportUrl":"https://waku-org.github.io/js-waku/7001//#testresult/4d7324d34437849c","status":"passed","time":{"start":1715243542960,"stop":1715243542961,"duration":1}},{"uid":"b8fa2a6e85e55c77","reportUrl":"https://waku-org.github.io/js-waku/7000//#testresult/b8fa2a6e85e55c77","status":"passed","time":{"start":1715222857930,"stop":1715222857930,"duration":0}},{"uid":"1b16559772c39171","reportUrl":"https://waku-org.github.io/js-waku/6999//#testresult/1b16559772c39171","status":"passed","time":{"start":1715183348109,"stop":1715183348109,"duration":0}},{"uid":"cd8fcc642e735b2","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/cd8fcc642e735b2","status":"passed","time":{"start":1715182427531,"stop":1715182427531,"duration":0}},{"uid":"e4ec1dfa236bda4","reportUrl":"https://waku-org.github.io/js-waku/6998//#testresult/e4ec1dfa236bda4","status":"passed","time":{"start":1715178039056,"stop":1715178039057,"duration":1}},{"uid":"2651ace42d7eba8b","reportUrl":"https://waku-org.github.io/js-waku/6997//#testresult/2651ace42d7eba8b","status":"passed","time":{"start":1715105252489,"stop":1715105252489,"duration":0}},{"uid":"c5d64c019542b839","reportUrl":"https://waku-org.github.io/js-waku/6996//#testresult/c5d64c019542b839","status":"passed","time":{"start":1715103180266,"stop":1715103180266,"duration":0}},{"uid":"526a765c497f2829","reportUrl":"https://waku-org.github.io/js-waku/6995//#testresult/526a765c497f2829","status":"passed","time":{"start":1715093715466,"stop":1715093715466,"duration":0}},{"uid":"66479519343c852e","reportUrl":"https://waku-org.github.io/js-waku/6994//#testresult/66479519343c852e","status":"passed","time":{"start":1715093274742,"stop":1715093274743,"duration":1}},{"uid":"ac709ffd8af6aee5","reportUrl":"https://waku-org.github.io/js-waku/6992//#testresult/ac709ffd8af6aee5","status":"passed","time":{"start":1715090548664,"stop":1715090548664,"duration":0}},{"uid":"e4c3dff2ba75b388","reportUrl":"https://waku-org.github.io/js-waku/6993//#testresult/e4c3dff2ba75b388","status":"passed","time":{"start":1715090828028,"stop":1715090828028,"duration":0}},{"uid":"1a838f288c805e2","reportUrl":"https://waku-org.github.io/js-waku/6991//#testresult/1a838f288c805e2","status":"passed","time":{"start":1715090125963,"stop":1715090125963,"duration":0}},{"uid":"54898f4ff7f89969","reportUrl":"https://waku-org.github.io/js-waku/6990//#testresult/54898f4ff7f89969","status":"passed","time":{"start":1715089839251,"stop":1715089839251,"duration":0}},{"uid":"1068137afda87955","reportUrl":"https://waku-org.github.io/js-waku/6989//#testresult/1068137afda87955","status":"passed","time":{"start":1715066376085,"stop":1715066376085,"duration":0}},{"uid":"c55d00d98284393d","reportUrl":"https://waku-org.github.io/js-waku/6988//#testresult/c55d00d98284393d","status":"passed","time":{"start":1715065456954,"stop":1715065456954,"duration":0}},{"uid":"4ee00489b85c9d90","reportUrl":"https://waku-org.github.io/js-waku/6987//#testresult/4ee00489b85c9d90","status":"passed","time":{"start":1715064962522,"stop":1715064962522,"duration":0}},{"uid":"718d4638e543ff16","reportUrl":"https://waku-org.github.io/js-waku/6986//#testresult/718d4638e543ff16","status":"passed","time":{"start":1715064607601,"stop":1715064607602,"duration":1}},{"uid":"85941135ba563dce","reportUrl":"https://waku-org.github.io/js-waku/6985//#testresult/85941135ba563dce","status":"passed","time":{"start":1715039584376,"stop":1715039584377,"duration":1}}]},"tags":[]},"source":"21afbb6949a48b8c.json","parameterValues":[]}
|
||||
1
7002/data/test-cases/220d48ccd243a5e.json
Normal file
1
7002/data/test-cases/220d48ccd243a5e.json
Normal file
File diff suppressed because one or more lines are too long
1
7002/data/test-cases/22757752e6a240e.json
Normal file
1
7002/data/test-cases/22757752e6a240e.json
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user