Cypress: Skipped test icon looks too much like a stuck spinner

Created on 14 Oct 2019  路  3Comments  路  Source: cypress-io/cypress

Current behavior:

image

Desired behavior:

A better icon - I've looked through Font Awesome and didn't find anything especially good.

Steps to reproduce: (app code and test code)

/// <reference types="Cypress" />
describe('Login page integration', function() {
    it.skip('foo', () => {

    });
});

Versions

Cypress 3.4.1

Most helpful comment

All 3 comments

@blumk Looks great to me!

Related issue https://github.com/cypress-io/cypress/issues/3092

Seems _skipped_ and _pending_ is not what you'd expect it to mean because cypress mimics the mocha design. The image seen in this issue is for a test with pending status. So not only is the terminology weird the ui is weird because of it.

Was this page helpful?
0 / 5 - 0 ratings