Skip to content
This repository has been archived by the owner on May 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #24 from wilcorrea-forks/master
Browse files Browse the repository at this point in the history
Start tests
  • Loading branch information
wilcorrea authored Mar 25, 2019
2 parents e676159 + 177ea9e commit 7093398
Show file tree
Hide file tree
Showing 80 changed files with 5,734 additions and 184 deletions.
19 changes: 19 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"plugins": ["@babel/plugin-syntax-dynamic-import"],
"env": {
"test": {
"plugins": ["dynamic-import-node"],
"presets": [
[
"@babel/preset-env",
{
"modules": "commonjs",
"targets": {
"node": "current"
}
}
]
]
}
}
}
45 changes: 43 additions & 2 deletions .travis.deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,46 @@ cd ${TRAVIS_BUILD_DIR}

cp .env.js.develop .env.js
quasar build
rm -rf ./docs/*
cp -R ./dist/spa/* ./docs

cp -R ./dist/spa/* ./

rm -rf ./.bin
rm -rf ./.docker
rm -rf ./.quasar
rm -rf ./dist
rm -rf ./docs
rm -rf ./node_modules
rm -rf ./src
rm -rf ./src-pwa
rm -rf ./test
rm -rf ./.babelrc
rm -rf ./.dockerize
rm -rf ./.editorconfig
rm -rf ./.env.js
rm -rf ./.env.js.develop
rm -rf ./.env.js.production
rm -rf ./.env.js.stage
rm -rf ./.eslintignore
rm -rf ./.eslintrc.js
rm -rf ./.gitignore
rm -rf ./.postcssrc.js
rm -rf ./.stylintrc
rm -rf ./.travis.deploy.sh
rm -rf ./.travis.yml
rm -rf ./babel.config.js
rm -rf ./cypress.json
rm -rf ./docker-compose.yml
rm -rf ./docker-compose.yml.develop
rm -rf ./jest.config.js
rm -rf ./LICENSE
rm -rf ./package.json
rm -rf ./quasar.build.sh
rm -rf ./quasar.conf.js
rm -rf ./quasar.env
rm -rf ./quasar.env.example
rm -rf ./quasar.extensions.json
rm -rf ./quasar.sh
rm -rf ./quasar.testing.json
rm -rf ./README.md
rm -rf ./wallaby.js
rm -rf ./yarn.lock
14 changes: 13 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
const fs = require('fs-extra')
let extend

/**
* The .babelrc file has been created to assist Jest for transpiling.
* You should keep your application's babel rules in this file.
*/
if (fs.existsSync('./.babelrc')) {
extend = './.babelrc'
}

module.exports = {
presets: [
'@quasar/babel-preset-app'
]
],
extends: extend
}
18 changes: 18 additions & 0 deletions cypress.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"baseUrl": "http://localhost:8080/",
"fixturesFolder": "test/cypress/fixtures",
"integrationFolder": "test/cypress/integration",
"pluginsFile": "test/cypress/plugins/index.js",
"screenshotsFolder": "test/cypress/screenshots",
"supportFile": "test/cypress/support/index.js",
"videosFolder": "test/cypress/videos",
"video": true,
"json.schemas": [
{
"fileMatch": [
"cypress.json"
],
"url": "https://on.cypress.io/cypress.schema.json"
}
]
}
1 change: 0 additions & 1 deletion docs/css/050ab291.48d0bd13.css

This file was deleted.

1 change: 0 additions & 1 deletion docs/css/0735c88b.9331b75e.css

This file was deleted.

1 change: 0 additions & 1 deletion docs/css/0fe293c0.ed59f7cb.css

This file was deleted.

1 change: 0 additions & 1 deletion docs/css/2e1bc28c.9abc8d5a.css

This file was deleted.

1 change: 0 additions & 1 deletion docs/css/app.8572e9c0.css

This file was deleted.

Binary file removed docs/fonts/KFOkCnqEu92Fr1MmgVxIIzQ.e9dbbe8a.woff
Binary file not shown.
Binary file removed docs/fonts/KFOlCnqEu92Fr1MmEU9fBBc-.de8b7431.woff
Binary file not shown.
Binary file removed docs/fonts/KFOlCnqEu92Fr1MmSU5fBBc-.a1471d1d.woff
Binary file not shown.
Binary file removed docs/fonts/KFOlCnqEu92Fr1MmWUlfBBc-.cf6613d1.woff
Binary file not shown.
Binary file removed docs/fonts/KFOlCnqEu92Fr1MmYUtfBBc-.8c2ade50.woff
Binary file not shown.
Binary file removed docs/fonts/KFOmCnqEu92Fr1Mu4mxM.bafb105b.woff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed docs/img/avatar.5ff53af9.png
Binary file not shown.
Binary file removed docs/img/controller.b61adce1.png
Binary file not shown.
Binary file removed docs/img/general.c8152a56.png
Binary file not shown.
1 change: 0 additions & 1 deletion docs/index.html

This file was deleted.

1 change: 0 additions & 1 deletion docs/js/050ab291.14adf911.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/js/0735c88b.636eb104.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/js/0fe293c0.1da671e9.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/js/2d0a4b42.80a61bec.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/js/2d21f240.5ce53942.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/js/2d228854.f7932e2b.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/js/2e1bc28c.7c70e311.js

This file was deleted.

Loading

0 comments on commit 7093398

Please sign in to comment.