Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
sv2 committed Dec 4, 2019
1 parent a3f52e8 commit 2a4ddc9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"dependencies": {
"@quasar/extras": "^1.3.3",
"core-js": "^3.4.3",
"quasar": "^1.5.3",
"quasar": "^1.5.4",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vuex": "^3.1.2"
Expand Down
6 changes: 0 additions & 6 deletions src/main.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
import Vue from 'vue';
import Vuetify from 'vuetify';
import App from './App.vue';
import router from './router';
import store from './store';

// Vuetify CSS
import 'vuetify/dist/vuetify.min.css';

// Dashblocks CSS
import 'dashblocks/dist/dashblocks.css';
import './quasar';

Vue.config.productionTip = false;

Vue.use(Vuetify);

new Vue({
router,
store,
Expand Down
10 changes: 5 additions & 5 deletions tests/e2e/plugins/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ module.exports = (on, config) => {
// }))

return Object.assign({}, config, {
fixturesFolder: "tests/e2e/fixtures",
integrationFolder: "tests/e2e/specs",
screenshotsFolder: "tests/e2e/screenshots",
videosFolder: "tests/e2e/videos",
supportFile: "tests/e2e/support/index.js"
fixturesFolder: 'tests/e2e/fixtures',
integrationFolder: 'tests/e2e/specs',
screenshotsFolder: 'tests/e2e/screenshots',
videosFolder: 'tests/e2e/videos',
supportFile: 'tests/e2e/support/index.js'
});
};
6 changes: 3 additions & 3 deletions tests/e2e/specs/test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// https://docs.cypress.io/api/introduction/api.html

describe("My First Test", () => {
it("Visits the app root url", () => {
cy.visit("/");
describe('My First Test', () => {
it('Visits the app root url', () => {
cy.visit('/');
});
});
2 changes: 1 addition & 1 deletion tests/e2e/support/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// ***********************************************************

// Import commands.js using ES2015 syntax:
import "./commands";
import './commands';

// Alternatively you can use CommonJS syntax:
// require('./commands')

0 comments on commit 2a4ddc9

Please sign in to comment.