@jinntec/fore 1.8.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/dist/fore-dev.js +2 -2
- package/dist/fore-dev.js.map +1 -1
- package/dist/fore.js +2 -2
- package/dist/fore.js.map +1 -1
- package/package.json +7 -2
- package/src/fx-fore.js +25 -5
- package/src/fx-instance.js +9 -3
- package/src/fx-submission.js +38 -143
- package/src/ui/fx-control.js +17 -6
package/README.md
CHANGED
|
@@ -181,6 +181,23 @@ Alternatively you can run the test suite from the commandline once:
|
|
|
181
181
|
npm run test
|
|
182
182
|
```
|
|
183
183
|
|
|
184
|
+
## Running the integration tests
|
|
185
|
+
|
|
186
|
+
Start the demo server and open cypress. Choose your browser and run all tests from there.
|
|
187
|
+
|
|
188
|
+
```
|
|
189
|
+
npm run start
|
|
190
|
+
npx cypress open
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
Alternatively, start the demo server and run the tests headlessly:
|
|
194
|
+
|
|
195
|
+
```
|
|
196
|
+
npm run start
|
|
197
|
+
npx cypress run
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
|
|
184
201
|
## Building a package
|
|
185
202
|
|
|
186
203
|
```npm run build``` creates two bundles in 'dist' directory.
|