-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: new installer logic * chore: adjust gitignore * feat: improve install screen * feat: add dashboard and settings * feat: added unpack with 7z * feat: add more translations introduces labels file add json sorter from sibling PR extends json-sorter for multiple files * feat: break installer into pages * feat: install process journey * fix: add missing translations in UI * feat: improve install screen * feat: better language illustration * refactor: move members from old utils * test: add tests * test: add tests * test: add tests * test: add tests * test: add tests * test: adjust tests --------- Co-authored-by: Tim Pietrusky <[email protected]>
- Loading branch information
1 parent
ce6c891
commit 694d518
Showing
224 changed files
with
7,944 additions
and
105,774 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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { defaults } from "jest-config"; | ||
|
||
// Adjust the import path to your tsconfig.json file | ||
|
||
const jestConfig = { | ||
...defaults, | ||
testMatch: ["**/?(*.)test.ts?(x)"], | ||
testPathIgnorePatterns: [".e2e."], | ||
transform: { | ||
"^.+\\.(t|j)sx?$": "@swc/jest", | ||
}, | ||
moduleNameMapper: { | ||
"@/(.*)": "<rootDir>/src/electron/future/$1", | ||
"#/(.*)": "<rootDir>/src/shared/$1", | ||
}, | ||
collectCoverage: true, | ||
coverageDirectory: "./coverage", | ||
coverageProvider: "v8", | ||
coverageReporters: ["lcov", "text", "json"], | ||
coverageThreshold: { | ||
global: { | ||
lines: 80, | ||
}, | ||
}, | ||
transformIgnorePatterns: ["/node_modules/"], | ||
extensionsToTreatAsEsm: [".ts", ".tsx"], | ||
}; | ||
|
||
export default jestConfig; |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.