Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to prelease gocam viz 1.1.1-beta.0 #20

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
legacy-peer-deps=true
strict-peer-dependencies=false
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
This is a workbench for Noctua.

# Noctua Pathway Viewer

## Development server

**PLEASE NOTE** This is a generated repo from Noctua Form Base PStandard Annotations Component. Any modifications will be overwritten


Run `npm start` for a dev server. Navigate to `http://localhost:4203/`. The app will automatically reload if you change any of the source files.

23 changes: 17 additions & 6 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
"node_modules/reveal.js/dist/reveal.css",
"node_modules/reveal.js/dist/theme/black.css"
],
"stylePreprocessorOptions": {
"includePaths": [
"src",
"./node_modules"
]
},
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/jqueryui/jquery-ui.min.js",
Expand All @@ -54,13 +60,13 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "10mb",
"maximumError": "15mb"
"maximumWarning": "50mb",
"maximumError": "150mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "20kb",
"maximumError": "30kb"
"maximumWarning": "200kb",
"maximumError": "300kb"
}
],
"fileReplacements": [
Expand Down Expand Up @@ -115,11 +121,16 @@
"styles": [
"src/styles.scss"
],
"stylePreprocessorOptions": {
"includePaths": [
"src",
"./node_modules"
]
},
"scripts": []
}
}
}
}
},
"defaultProject": "noctua"
}
}
13 changes: 11 additions & 2 deletions e2e/src/app.e2e-spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { AppPage } from './app.po';
import { browser, logging } from 'protractor';

describe('workspace-project App', () => {
let page: AppPage;
Expand All @@ -9,6 +10,14 @@ describe('workspace-project App', () => {

it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to app!');
expect(page.getTitleText()).toEqual('Welcome to protractor-example!');
});
});

afterEach(async () => {
// Assert that there are no errors emitted from the browser
const logs = await browser.manage().logs().get(logging.Type.BROWSER);
expect(logs).not.toContain(jasmine.objectContaining({
level: logging.Level.SEVERE,
} as logging.Entry));
});
});
5 changes: 5 additions & 0 deletions e2e/src/app.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@ export class AppPage {
getParagraphText() {
return element(by.css('app-root h1')).getText();
}

getTitleText() {
return element(by.css('app-root h1')).getText() as Promise<string>;
}
}

6 changes: 4 additions & 2 deletions ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
"lib": {
"entryFile": "src/public-api.ts"
},
"allowedNonPeerDependencies": ["."]
}
"allowedNonPeerDependencies": [
"."
]
}
Loading