lint: format
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
describe('My First Test', () => {
|
||||
it('Visits the app root url', () => {
|
||||
cy.visit('/')
|
||||
cy.contains('ion-content', 'Tab 1 page')
|
||||
})
|
||||
})
|
||||
describe("My First Test", () => {
|
||||
it("Visits the app root url", () => {
|
||||
cy.visit("/");
|
||||
cy.contains("ion-content", "Tab 1 page");
|
||||
});
|
||||
});
|
||||
|
||||
@@ -34,4 +34,4 @@
|
||||
// visit(originalFn: CommandOriginalFn, url: string, options: Partial<VisitOptions>): Chainable<Element>
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
// ***********************************************************
|
||||
|
||||
// Import commands.js using ES2015 syntax:
|
||||
import './commands'
|
||||
import "./commands";
|
||||
|
||||
// Alternatively you can use CommonJS syntax:
|
||||
// require('./commands')
|
||||
// require('./commands')
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { mount } from '@vue/test-utils'
|
||||
import Tab1Page from '@/views/Tab1Page.vue'
|
||||
import { describe, expect, test } from 'vitest'
|
||||
import { mount } from "@vue/test-utils";
|
||||
import { describe, expect, it } from "vitest";
|
||||
import Tab1Page from "@/views/Tab1Page.vue";
|
||||
|
||||
describe('Tab1Page.vue', () => {
|
||||
test('renders tab 1 Tab1Page', () => {
|
||||
const wrapper = mount(Tab1Page)
|
||||
expect(wrapper.text()).toMatch('Tab 1 page')
|
||||
})
|
||||
})
|
||||
describe("tab1Page.vue", () => {
|
||||
it("renders tab 1 Tab1Page", () => {
|
||||
const wrapper = mount(Tab1Page);
|
||||
expect(wrapper.text()).toMatch("Tab 1 page");
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user