Skip to content
Snippets Groups Projects
Commit 7f19178d authored by Behrisch, M. (Michael)'s avatar Behrisch, M. (Michael)
Browse files

refactor: :art: renames graphpolaris-e2e to web-graphpolaris-e2e

To follow the convention outlined in https://medium.com/showpad-engineering/how-to-organize-and-name-applications-and-libraries-in-an-nx-monorepo-for-immediate-team-wide-9876510dbe28 we need to update the app names and prefix with the intended deployment environment (web, windows, react-native)
parent bff6cacb
No related branches found
No related tags found
1 merge request!7refactor(rawjsonvis): moves rawjsonvis into own component
{ {
"extends": ["plugin:cypress/recommended", "../../.eslintrc.json"], "extends": ["plugin:cypress/recommended", "..\\..\\.eslintrc.json"],
"ignorePatterns": ["!**/*"], "ignorePatterns": ["!**/*"],
"overrides": [ "overrides": [
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
"supportFile": "./src/support/index.ts", "supportFile": "./src/support/index.ts",
"pluginsFile": false, "pluginsFile": false,
"video": true, "video": true,
"videosFolder": "../../dist/cypress/apps/graphpolaris-e2e/videos", "videosFolder": "../../dist/cypress/apps/web-graphpolaris-e2e/videos",
"screenshotsFolder": "../../dist/cypress/apps/graphpolaris-e2e/screenshots", "screenshotsFolder": "../../dist/cypress/apps/web-graphpolaris-e2e/screenshots",
"chromeWebSecurity": false "chromeWebSecurity": false
} }
{ {
"root": "apps/graphpolaris-e2e", "root": "apps/web-graphpolaris-e2e",
"sourceRoot": "apps/graphpolaris-e2e/src", "sourceRoot": "apps/web-graphpolaris-e2e/src",
"projectType": "application", "projectType": "application",
"targets": { "targets": {
"e2e": { "e2e": {
"executor": "@nrwl/cypress:cypress", "executor": "@nrwl/cypress:cypress",
"options": { "options": {
"cypressConfig": "apps/graphpolaris-e2e/cypress.json", "cypressConfig": "apps/web-graphpolaris-e2e/cypress.json",
"devServerTarget": "web-graphpolaris:serve" "devServerTarget": "web-graphpolaris:serve"
}, },
"configurations": { "configurations": {
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
"executor": "@nrwl/linter:eslint", "executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"], "outputs": ["{options.outputFile}"],
"options": { "options": {
"lintFilePatterns": ["apps/graphpolaris-e2e/**/*.{js,ts}"] "lintFilePatterns": ["apps/web-graphpolaris-e2e/**/*.{js,ts}"]
} }
} }
}, },
......
describe('graphpolaris: App component', () => { describe('graphpolaris: App component', () => {
beforeEach(() => cy.visit('/iframe.html?id=app--primary')); beforeEach(() => cy.visit('/iframe.html?id=app--primary'));
it('should render the component', () => { it('should render the component', () => {
cy.get('h1').should('contain', 'Welcome to App!'); cy.get('h1').should('contain', 'Welcome to App!');
}); });
}); });
{ {
"version": 2, "version": 2,
"projects": { "projects": {
"graphpolaris-e2e": "apps/graphpolaris-e2e",
"shared-data-access-store": "libs/shared/data-access/store", "shared-data-access-store": "libs/shared/data-access/store",
"web-graphpolaris": "apps/web-graphpolaris" "web-graphpolaris": "apps/web-graphpolaris",
"web-graphpolaris-e2e": "apps/web-graphpolaris-e2e"
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment