Move Browser mode chapter

This commit is contained in:
Maxime GRIS
2017-05-06 01:11:27 +02:00
parent 083498eab8
commit 881875036a

View File

@@ -82,6 +82,11 @@ If you need to use NodeJS native libraries like 'fs' or 'os', you **MUST** add i
}, },
``` ```
## Browser mode
Maybe you want to execute the application in the browser ? You can do it with `npm run start:web`.
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.
## Execute E2E tests ## Execute E2E tests
You can find end-to-end tests in /e2e folder. You can find end-to-end tests in /e2e folder.
@@ -92,7 +97,3 @@ You can now execute tests with the command lines below :
- **in a terminal window** -> First, start a web server on port 4200 : `npm run start:web` - **in a terminal window** -> First, start a web server on port 4200 : `npm run start:web`
- **in another terminal window** -> Then, execute Protractor : `npm run e2e` - **in another terminal window** -> Then, execute Protractor : `npm run e2e`
## Browser mode
Maybe you want to execute the application in the browser ? You can do it with `npm run start:web`.
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.