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": ["!**/*"],
"overrides": [
{
......
......@@ -6,7 +6,7 @@
"supportFile": "./src/support/index.ts",
"pluginsFile": false,
"video": true,
"videosFolder": "../../dist/cypress/apps/graphpolaris-e2e/videos",
"screenshotsFolder": "../../dist/cypress/apps/graphpolaris-e2e/screenshots",
"videosFolder": "../../dist/cypress/apps/web-graphpolaris-e2e/videos",
"screenshotsFolder": "../../dist/cypress/apps/web-graphpolaris-e2e/screenshots",
"chromeWebSecurity": false
}
{
"root": "apps/graphpolaris-e2e",
"sourceRoot": "apps/graphpolaris-e2e/src",
"root": "apps/web-graphpolaris-e2e",
"sourceRoot": "apps/web-graphpolaris-e2e/src",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "apps/graphpolaris-e2e/cypress.json",
"cypressConfig": "apps/web-graphpolaris-e2e/cypress.json",
"devServerTarget": "web-graphpolaris:serve"
},
"configurations": {
......@@ -19,7 +19,7 @@
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/graphpolaris-e2e/**/*.{js,ts}"]
"lintFilePatterns": ["apps/web-graphpolaris-e2e/**/*.{js,ts}"]
}
}
},
......
describe('graphpolaris: App component', () => {
beforeEach(() => cy.visit('/iframe.html?id=app--primary'));
it('should render the component', () => {
cy.get('h1').should('contain', 'Welcome to App!');
});
it('should render the component', () => {
cy.get('h1').should('contain', 'Welcome to App!');
});
});
{
"version": 2,
"projects": {
"graphpolaris-e2e": "apps/graphpolaris-e2e",
"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