Page MenuHomeSoftware Heritage

home.spec.js
No OneTemporary

home.spec.js

/**
* Copyright (C) 2019 The Software Heritage developers
* See the AUTHORS file at the top-level directory of this distribution
* License: GNU Affero General Public License version 3, or any later version
* See top-level LICENSE file for more information
*/
const $ = Cypress.$;
const url = '/';
describe('Home Page Tests', function() {
it('should display positive stats for each category', function() {
cy.visit(url)
.wait(3000) // wait counters request result
.get('.swh-counter')
.then((counters) => {
for (let counter of counters) {
let innerText = $(counter).text();
const value = parseInt(innerText.replace(/,/g, ''));
assert.isAbove(value, 0);
}
});
});
});

File Metadata

Mime Type
text/plain
Expires
Fri, Jul 4, 2:41 PM (5 d, 8 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3330331

Event Timeline