Skip to content

Commit

Permalink
Merge pull request #535 from wyne/expo-52
Browse files Browse the repository at this point in the history
Upgrade to Expo 52
  • Loading branch information
wyne authored Jan 21, 2025
2 parents 8a2d2a6 + 5e5755f commit 846699f
Show file tree
Hide file tree
Showing 8 changed files with 14,957 additions and 17,206 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
1 change: 1 addition & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const config: Config = {
],
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
setupFiles: ['./jest.setup.js'],
setupFilesAfterEnv: [
'@testing-library/jest-native/extend-expect',
],
Expand Down
8 changes: 8 additions & 0 deletions jest.setup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
global.FormData = class FormData {
constructor() {
this.data = [];
}
append(key, value) {
this.data.push({ key, value });
}
};
Loading

0 comments on commit 846699f

Please sign in to comment.