-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
49 additions
and
47 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
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
/* eslint-disable */ | ||
export default { | ||
displayName: 'jetstream-web-extension', | ||
preset: '../../jest.preset.js', | ||
|
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
apps/jetstream-web-extension/src/core/AppWrapperNotJetstreamOwnedPage.tsx
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
1 change: 0 additions & 1 deletion
1
apps/jetstream-web-extension/src/utils/serviceWorker.zip-handler.ts
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
1 change: 1 addition & 0 deletions
1
apps/jetstream-web-extension/src/utils/web-extension-localforage-driver.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
"start:prod": "NODE_ENV=production node dist/apps/api/main.js", | ||
"start:staging": "NODE_ENV=production node dist/apps/api/main.js", | ||
"start:e2e": "node dist/apps/api/main.js", | ||
"start:web-extension": "nx run jetstream-web-extension:serve", | ||
"start:cron:save-analytics-summary": "node dist/apps/cron-tasks/save-analytics-summary.js", | ||
"start:cron:geo-ip-api-updater": "node dist/apps/cron-tasks/geo-ip-api-updater.js", | ||
"build": "cross-env NODE_ENV=production npm-run-all db:generate build:core build:landing generate:version", | ||
|
@@ -83,9 +82,10 @@ | |
"icons:build:utility": "npx @svgr/[email protected] --config-file .svgo-config.json -d ./libs/icon-factory/src/lib/icons/utility ./node_modules/@salesforce-ux/design-system/assets/icons/utility", | ||
"test": "nx test", | ||
"test:affected": "TZ=UTC nx affected -t test --output-style=stream", | ||
"test:all": "TZ=UTC nx run-many -t test --output-style=stream --skip-nx-cache", | ||
"test:cron:e2e": "yarn build:cron && cd dist/apps/cron-tasks && docker-compose -f docker-compose.e2e.yml up --build", | ||
"lint": "nx workspace-lint && nx lint", | ||
"test:all": "TZ=UTC nx run-many -t test --exclude cron-tasks --output-style=stream --skip-nx-cache", | ||
"test:cron": "TZ=UTC nx run-many -t test -p cron-tasks --output-style=stream --skip-nx-cache", | ||
"lint:affected": "TZ=UTC nx affected -t lint --output-style=stream", | ||
"lint:all": "TZ=UTC nx run-many -t lint --output-style=stream --skip-nx-cache", | ||
"e2e": "nx e2e", | ||
"playwright:open": "yarn playwright open http://localhost:3333", | ||
"playwright:test:with-server": "yarn start-server-and-test --expect 200 'yarn start:e2e' http://localhost:3333 'yarn playwright:test'", | ||
|