Skip to content

Commit

Permalink
Update changelog and build script (#171)
Browse files Browse the repository at this point in the history
* Update changelog

* Update build script

* Add tests junit script

* Make every e2e script use junit
  • Loading branch information
JonasDov authored Dec 9, 2024
1 parent e697472 commit 4c2c4d8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ lib
node_modules
/**/playwright-report
/**/test-results
junit-results.xml
2 changes: 1 addition & 1 deletion app/e2e-tests/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default defineConfig({
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: [["list"], ["html", { open: "never" }]],
reporter: [["list"], ["html", { open: "never" }], ["junit", { outputFile: "junit-results.xml" }]],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"start:qa": "cross-env IMJS_URL_PREFIX=qa- run-p --silent start:backend start:frontend",
"start:web": "cross-env DEPLOYMENT_TYPE=web npm run start:frontend",
"start:backend": "npm run start --prefix ./app/backend",
"build": "npm run build:common && npm run build:components && run-p build:backend build:frontend",
"build": "npm run build:common && npm run build:components && npm run build:frontend",
"build:backend": "npm run build --prefix ./app/backend",
"build:components": "npm run build --prefix ./presentation-rules-editor-react",
"build:frontend": "npm run build --prefix ./app/frontend",
Expand Down
7 changes: 5 additions & 2 deletions presentation-rules-editor-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- `@itwin` peer dependencies have been upgraded to `^3.6.2 || ^4.0.0`.
- `monaco-editor` peer dependency has been upgraded to `^0.40.0`.
- `@itwin/itwinui-react` peer dependency has been upgraded to `^3.0.0`.
- `@itwin/presentation-components` peer dependency has been upgraded to `^5.0.0`.
- All other `@itwin` peer dependencies have been upgraded to `^4.0.0`.
- `react` and `react-dom` peer dependencies have been upgraded to `^18.0.0`.
- `monaco-editor` peer dependency has been upgraded to `^0.52.0`.
- Update package dependencies.

### Added
Expand Down

0 comments on commit 4c2c4d8

Please sign in to comment.