-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PCF Debugger: Add initial debugger code (#231)
* add experimental pcf debugger feature flag * add debugger code * use regex for bundle matching * only show error if no retry left * use instance props to store manager instances * add is disposed flag * use sleep instead of setTimeout * constants cleanup & general tidiness * extract BundleLoader * adding tests * add test packages * remove console * cleanup * adding tests * add more tests * use DI-like pattern for easier tests * add gulp tasks for testing the debugger * separate unit and integration tests * adding util tests * update headers * replace any * format package json * revert gulpfile to previous format * add dom.iterable to support .entries * format extension.ts * add readme * fix header * fix package lock registry resolution * remove attachToExistingBrowser * use xvfb action to execute integration tests * add optional dependencies Co-authored-by: Felix Schober <[email protected]>
- Loading branch information
1 parent
723cdf1
commit 6ce12e8
Showing
58 changed files
with
4,403 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,10 +32,17 @@ jobs: | |
with: | ||
node-version: 14.x | ||
|
||
- name: Build and test | ||
- name: Install dependencies | ||
run: npm i -g npm | ||
|
||
- name: Build and unit test | ||
run: | | ||
npm i -g npm | ||
npm ci | ||
npm run dist | ||
env: | ||
AZ_DevOps_Read_PAT: ${{ secrets.AZ_DevOps_Read_PAT }} | ||
|
||
- name: Run integration tests | ||
uses: GabrielBB/[email protected] | ||
with: | ||
run: npm run test-integration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.