Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 1bb474d

Browse files
authored
Merge pull request #1 from microsoft/rn-0.71-pipeline-fix
Bump react-native test app version to 0.71.3
2 parents 586e7cc + 981d286 commit 1bb474d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

code-push-plugin-testing-framework/script/testConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var TestUtil_1 = require("./TestUtil");
99
// COMMAND LINE OPTION NAMES, FLAGS, AND DEFAULTS
1010
var DEFAULT_TEST_RUN_DIRECTORY = path.join(os.tmpdir(), TestUtil_1.TestUtil.getPluginName(), "test-run");
1111
var DEFAULT_UPDATES_DIRECTORY = path.join(os.tmpdir(), TestUtil_1.TestUtil.getPluginName(), "updates");
12-
var DEFAULT_PLUGIN_PATH = path.join(__dirname, "../..");
12+
var DEFAULT_PLUGIN_PATH = path.join(__dirname, " ../../../..");
1313
var NPM_PLUGIN_PATH = TestUtil_1.TestUtil.getPluginName();
1414
var SETUP_FLAG_NAME = "--setup";
1515
var DEFAULT_PLUGIN_TGZ_NAME = TestUtil_1.TestUtil.getPluginName() + "-" + TestUtil_1.TestUtil.getPluginVersion() + ".tgz";

test/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ class RNProjectManager extends ProjectManager {
307307
}
308308
mkdirp.sync(projectDirectory);
309309

310-
return TestUtil.getProcessOutput("npx react-native init " + appName + " --version 0.67.1", { cwd: projectDirectory, timeout: 30 * 60 * 1000 })
310+
return TestUtil.getProcessOutput("npx react-native init " + appName + " --version 0.71.3", { cwd: projectDirectory, timeout: 30 * 60 * 1000 })
311311
.then((e) => { console.log(`"npx react-native init ${appName}" success. cwd=${projectDirectory}`); return e; })
312312
.then(this.copyTemplate.bind(this, templatePath, projectDirectory))
313313
.then<void>(TestUtil.getProcessOutput.bind(undefined, TestConfig.thisPluginInstallString, { cwd: path.join(projectDirectory, TestConfig.TestAppName) }))

0 commit comments

Comments
 (0)