- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP * Replace ava with jest in core * Update package-lock * Exclude tests from transpilation * Expect transformPluginFile to throw * Mock fetch in audius tests * Mock fetch in audius tests
- v0.6.42
- v0.6.41
- v0.6.40
- v0.6.39
- v0.6.38
- v0.6.37
- v0.6.36
- v0.6.35
- v0.6.34
- v0.6.33
- v0.6.32
- v0.6.31
- v0.6.30
- v0.6.29
- v0.6.28
- v0.6.27
- v0.6.26
- v0.6.25
- v0.6.24
- v0.6.23
- v0.6.22
- v0.6.21
- v0.6.20
- v0.6.19
- v0.6.18
- v0.6.17
- v0.6.16
- v0.6.15
- v0.6.14
- v0.6.13
- v0.6.12
- nightly
- latest
- fd06a3
- f5ec0d
- f2f59d
- eac584
- e94388
- e8fcb6
- e8d6cc
- c9cb81
- bc8b7b
- b6e5b2
- b2a752
- ${GITHUB_SHA}
- 52769a
- 9545bf
- 8988ba
- 549e4d
- 0437ae
- 268b26
- 95cfe0
- 58dfc7
- 27f5b2a
- 23bcaf
- 15c5eb
- 9f77fc
- 3f9007
- 2f1ec0
- 2ec701
- 2dd909
- 2c7b60
- 2a872a
Showing
22 changed files
with
4,785 additions
and
3,068 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
class Electron { | ||
prototype = {} | ||
get() { | ||
return ''; | ||
} | ||
set() {} | ||
} | ||
|
||
module.exports = Electron; |
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,6 @@ | ||
class MockLogger { | ||
static log() {} | ||
static error() {} | ||
} | ||
|
||
module.exports = MockLogger; |
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,17 @@ | ||
module.exports = { | ||
app: { | ||
getPath: () => { } | ||
}, | ||
remote: { | ||
transformSource: () => { }, | ||
app: { | ||
getPath: () => { } | ||
}, | ||
dialog: { | ||
showOpenDialog: jest.fn(async () => Promise.resolve({ | ||
canceled: false, | ||
filePaths: ['test file.txt'] | ||
})) | ||
} | ||
} | ||
}; |
File renamed without changes.
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,7 @@ | ||
|
||
export default async () => ({ | ||
transform: { | ||
'^.+\\.(ts|tsx)$': 'ts-jest', | ||
'^.+\\.(js|jsx)$': 'ts-jest' | ||
} | ||
}); |
Oops, something went wrong.