mirror of
https://github.com/cypress-io/cypress.git
synced 2026-03-11 03:49:47 -05:00
13 lines
309 B
JavaScript
13 lines
309 B
JavaScript
/// <reference types="cypress" />
|
|
import React from 'react'
|
|
import { mount } from '@cypress/react'
|
|
// import SVG as ReactComponent
|
|
import { ReactComponent as Logo } from './logo.svg'
|
|
|
|
describe('Logo', () => {
|
|
it('imports SVG', () => {
|
|
mount(<Logo />)
|
|
cy.get('path').should('have.attr', 'd')
|
|
})
|
|
})
|