feat(release): prepare 1.1.0 candidate
This commit is contained in:
parent
5a34f66981
commit
5205dcdfa9
736 changed files with 115667 additions and 12203 deletions
15
apps/mobile-rn/__mocks__/@react-native-documents-picker.js
Normal file
15
apps/mobile-rn/__mocks__/@react-native-documents-picker.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
module.exports = {
|
||||
errorCodes: {
|
||||
OPERATION_CANCELED: 'OPERATION_CANCELED',
|
||||
IN_PROGRESS: 'IN_PROGRESS',
|
||||
UNABLE_TO_OPEN_FILE_TYPE: 'UNABLE_TO_OPEN_FILE_TYPE',
|
||||
},
|
||||
isErrorWithCode: jest.fn((candidate) => (
|
||||
candidate !== null
|
||||
&& typeof candidate === 'object'
|
||||
&& typeof candidate.code === 'string'
|
||||
)),
|
||||
keepLocalCopy: jest.fn(async () => []),
|
||||
pick: jest.fn(async () => []),
|
||||
types: { audio: 'audio/*' },
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue