Skip to content

Commit 2165d52

Browse files
committed
Bump the Expo version in integration tests
1 parent 82cd179 commit 2165d52

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

test/template/app.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,6 @@
2626
"CodePushServerURL": "http://10.0.2.2:3001"
2727
}
2828
}
29-
],
30-
[
31-
"expo-build-properties",
32-
{
33-
"ios": {
34-
"deploymentTarget": "15.5"
35-
}
36-
}
3729
]
3830
]
3931
}

test/test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,12 +366,11 @@ class RNProjectManager extends ProjectManager {
366366
mkdirp.sync(projectDirectory);
367367

368368
if (TestConfig.isExpoApp) {
369-
return TestUtil.getProcessOutput(`npx create-expo-app@latest ${appName} --template blank@sdk-55`, { cwd: projectDirectory, timeout: 30 * 60 * 1000 })
369+
return TestUtil.getProcessOutput(`npx create-expo-app@latest ${appName} --template blank@sdk-57`, { cwd: projectDirectory, timeout: 30 * 60 * 1000 })
370370
.then((e) => { console.log(`"npx expo init ${appName}" success. cwd=${projectDirectory}`); return e; })
371371
.then(this.copyTemplate.bind(this, templatePath, projectDirectory))
372372
.then<void>(TestUtil.getProcessOutput.bind(undefined, TestConfig.thisPluginInstallString, { cwd: path.join(projectDirectory, TestConfig.TestAppName) }))
373373
.then(installExpoBundleTooling.bind(undefined, path.join(projectDirectory, TestConfig.TestAppName)))
374-
.then<void>(TestUtil.getProcessOutput.bind(undefined, "npx expo install expo-build-properties", { cwd: path.join(projectDirectory, TestConfig.TestAppName) }))
375374
.then(TestUtil.getProcessOutput.bind(undefined, `npx expo prebuild --clean`, { cwd: path.join(projectDirectory, TestConfig.TestAppName) }))
376375
.then(() => {
377376
ensureAndroidCleartextTraffic(path.join(projectDirectory, TestConfig.TestAppName, "android", "app", "src", "main", "AndroidManifest.xml"));

0 commit comments

Comments
 (0)