Skip to content

Commit 00ce410

Browse files
author
Maxime GRIS
committed
[Bumped Version] 8.0.3
1 parent e3d2fca commit 00ce410

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

Diff for: CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
## <small>8.0.2 (2020-08-12)</small>
1+
## <small>8.0.3 (2020-08-12)</small>
22

3+
* [Bumped Version] 8.0.2 ([84598a5](https://github.com/maximegris/angular-electron/commit/84598a5))
4+
* fix/ e2e tests with Spectron ([472afc8](https://github.com/maximegris/angular-electron/commit/472afc8))
35
* fix/ require error with nodeIntegration = false ([61c5c6b](https://github.com/maximegris/angular-electron/commit/61c5c6b))
6+
* misc/ Upgrade Angular (10.0.9) and Electron (9.2.0) ([e3d2fca](https://github.com/maximegris/angular-electron/commit/e3d2fca))
47

58

69

Diff for: README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Bootstrap and package your project with Angular 10 and Electron 8 (Typescript +
1515

1616
Currently runs with:
1717

18-
- Angular v10.0.7
19-
- Electron v9.1.2
18+
- Angular v10.0.9
19+
- Electron v9.2.0
2020
- Electron Builder v22.8.0
2121

2222
With this sample, you can :
@@ -84,6 +84,17 @@ YES! You can do it! Just by importing your library in npm dependencies section (
8484
Maybe you want to execute the application in the browser with hot reload ? Just run `npm run ng:serve:web`.
8585
**Note that you can't use Electron or NodeJS native libraries in this case.** Please check `providers/electron.service.ts` to watch how conditional import of electron/Native libraries is done.
8686

87+
# E2E Testing
88+
89+
E2E Test scripts can be found in `e2e` folder.
90+
91+
|Command|Description|
92+
|--|--|
93+
|`npm run e2e`| Execute end to end tests |
94+
95+
Note: To make it work behind a proxy, you can add this proxy exeption in your terminal
96+
`export {no_proxy,NO_PROXY}="127.0.0.1,localhost"`
97+
8798
## Branch & Packages version
8899

89100
- Angular 4 & Electron 1 : Branch [angular4](https://github.com/maximegris/angular-electron/tree/angular4)

Diff for: e2e/main.e2e.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ describe('angular-electron App', function () {
99

1010
let client: SpectronClient;
1111

12-
beforeEach(async function() {
13-
await this.app.start();
14-
12+
beforeEach(function() {
1513
client = this.app.client;
1614
});
1715

0 commit comments

Comments
 (0)