├── .circleci └── config.yml ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .stylelintrc.json ├── README.md ├── babel.config.js ├── dist ├── all.css ├── all.min.css ├── css │ ├── about.ebfad94d.css │ └── app.4d6efa06.css ├── favicon.ico ├── index.html └── js │ ├── about.7ede2fdc.js │ ├── about.7ede2fdc.js.map │ ├── app.2bc77a55.js │ ├── app.2bc77a55.js.map │ ├── chunk-vendors.b131be2b.js │ └── chunk-vendors.b131be2b.js.map ├── lambda └── hello.js ├── netlify.toml ├── package.json ├── public ├── all.css ├── all.min.css ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── Game.vue │ ├── GamesList.vue │ └── Header.vue ├── lambda │ └── hello.js ├── main.js ├── router.js ├── store.js ├── utils │ ├── format-date.js │ └── hello-name.js └── views │ ├── About.vue │ └── Home.vue └── tests ├── e2e ├── custom-assertions │ └── elementCount.js └── specs │ └── test.js └── unit ├── .eslintrc.js ├── Game.spec.js ├── GameList.spec.js ├── Header.spec.js ├── Home.spec.js ├── __mocks__ └── axios.js ├── __snapshots__ ├── GameList.spec.js.snap ├── Header.spec.js.snap └── Home.spec.js.snap └── __utils__ ├── format-date.spec.js └── hello-name.spec.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/all.css -------------------------------------------------------------------------------- /dist/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/all.min.css -------------------------------------------------------------------------------- /dist/css/about.ebfad94d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/css/about.ebfad94d.css -------------------------------------------------------------------------------- /dist/css/app.4d6efa06.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/css/app.4d6efa06.css -------------------------------------------------------------------------------- /dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/favicon.ico -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/js/about.7ede2fdc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/js/about.7ede2fdc.js -------------------------------------------------------------------------------- /dist/js/about.7ede2fdc.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/js/about.7ede2fdc.js.map -------------------------------------------------------------------------------- /dist/js/app.2bc77a55.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/js/app.2bc77a55.js -------------------------------------------------------------------------------- /dist/js/app.2bc77a55.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/js/app.2bc77a55.js.map -------------------------------------------------------------------------------- /dist/js/chunk-vendors.b131be2b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/js/chunk-vendors.b131be2b.js -------------------------------------------------------------------------------- /dist/js/chunk-vendors.b131be2b.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/dist/js/chunk-vendors.b131be2b.js.map -------------------------------------------------------------------------------- /lambda/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/lambda/hello.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/package.json -------------------------------------------------------------------------------- /public/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/public/all.css -------------------------------------------------------------------------------- /public/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/public/all.min.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Game.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/components/Game.vue -------------------------------------------------------------------------------- /src/components/GamesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/components/GamesList.vue -------------------------------------------------------------------------------- /src/components/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/components/Header.vue -------------------------------------------------------------------------------- /src/lambda/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/lambda/hello.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/router.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/store.js -------------------------------------------------------------------------------- /src/utils/format-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/utils/format-date.js -------------------------------------------------------------------------------- /src/utils/hello-name.js: -------------------------------------------------------------------------------- 1 | export default function (name) { 2 | return `Hello ${name}`; 3 | } 4 | -------------------------------------------------------------------------------- /src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/views/About.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /tests/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /tests/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/e2e/specs/test.js -------------------------------------------------------------------------------- /tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/unit/.eslintrc.js -------------------------------------------------------------------------------- /tests/unit/Game.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/unit/Game.spec.js -------------------------------------------------------------------------------- /tests/unit/GameList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/unit/GameList.spec.js -------------------------------------------------------------------------------- /tests/unit/Header.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/unit/Header.spec.js -------------------------------------------------------------------------------- /tests/unit/Home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/unit/Home.spec.js -------------------------------------------------------------------------------- /tests/unit/__mocks__/axios.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | get: jest.fn(() => Promise.resolve({ data: [3] })), 3 | }; 4 | -------------------------------------------------------------------------------- /tests/unit/__snapshots__/GameList.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/unit/__snapshots__/GameList.spec.js.snap -------------------------------------------------------------------------------- /tests/unit/__snapshots__/Header.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/unit/__snapshots__/Header.spec.js.snap -------------------------------------------------------------------------------- /tests/unit/__snapshots__/Home.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/unit/__snapshots__/Home.spec.js.snap -------------------------------------------------------------------------------- /tests/unit/__utils__/format-date.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/unit/__utils__/format-date.spec.js -------------------------------------------------------------------------------- /tests/unit/__utils__/hello-name.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristinafsanz/guardians-of-the-front-galaxy/HEAD/tests/unit/__utils__/hello-name.spec.js --------------------------------------------------------------------------------