Auto formatting

This commit is contained in:
advplyr 2024-04-29 16:30:30 -05:00
parent 2bd532eb9a
commit ff27c0b58b
4 changed files with 41 additions and 43 deletions

View File

@ -94,7 +94,6 @@ describe('AuthorCard', () => {
expect(width).to.be.closeTo(propsData.width, 0.01)
expect(height).to.be.closeTo(propsData.height + nameBelowHeight + py1, 0.01)
})
})
it('renders quick-match and edit buttons on mouse hover', () => {

View File

@ -51,7 +51,6 @@ describe('<NarratorCard />', () => {
cy.mount(NarratorCard, mountOptions)
cy.get('&numBooks').should('have.text', '1 Book')
})
it('renders the default name and num-books when narrator is not provided', () => {

View File

@ -1,10 +1,10 @@
const { defineConfig } = require("cypress");
const { defineConfig } = require("cypress")
module.exports = defineConfig({
component: {
devServer: {
framework: "nuxt",
bundler: "webpack",
},
},
});
bundler: "webpack"
}
}
})