Very impressive work from Quasar - one codebase for web, SSR, mobile and electron apps. https://t.co/dj26KSSPv5
— Evan You (@youyuxi) February 9, 2019
Quasar Framework is a framework build on top of Vue.js , that allows you to build Modern Website (SPA, PWA, SSR), Mobile App (iOS, Android), and Desktop App (Windows, MacOS, Linux)
SPA, PWA, SSR, Desktop, Mobile
superoo7/todo-appTesting with Jest and Cypress
Lighthouse, Snyk and more
quasarframework/quasar-testing <test lang="jest">
import SomeVueComponent from "../SomeVueComponent.vue";
import { mount } from "@vue/test-utils";
describe("test vue component", () => {
it("snapshot vue component", () => {
const vueEl = mount(SomeVueComponent);
expect(vueEl.html()).toMatchSnapshot();
})
})
</test>