Skip to content

Hovering over test's steps break website visual #525

@ddeath

Description

@ddeath
  • Operating System: Linux Mint 17
  • Cypress Version: 0.19.2
  • Browser/Browser Version: Google Chrome 60.0.3112.10 (Official Build) dev (64-bit)

Are you requesting a feature or reporting a bug?

bug

Current behavior:

When you hover over test's steps it breaks the website visual

Expected behavior:

It will look same as original page

How to reproduce the current behavior:

To replicate this bug:

git clone git@github.com:ddeath/cypress-css-bug.git
cd cypress-css-bug
npm install
./node_modules/.bin/http-server

Then open cypress and run test suite.

  • all 2 tests should pass
  • you should see nice 10 icons from bootstrap
  • click on second test to see steps, you should see 10 steps
  • hover over one of them
  • now the nice icons are gone

Test code:

describe('Test css', () => {
  it('Should be able to visit index.html', () => {
    cy.visit('http://127.0.0.1:8081/');
  });

  it('Should be able to get all ten icons', () => {
    cy.get('span.glyphicon-info-sign');
    cy.get('span.glyphicon-envelope');
    cy.get('span.glyphicon-off');
    cy.get('span.glyphicon-film');
    cy.get('span.glyphicon-user');
    cy.get('span.glyphicon-print');
    cy.get('span.glyphicon-camera');
    cy.get('span.glyphicon-tint');
    cy.get('span.glyphicon-fire');
    cy.get('span.glyphicon-leaf');
  });
});

Additional Info (images, notes, stack traces, etc)

Metadata

Metadata

Assignees

Labels

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions