forked from cloudron-apps/gitea-app
Fixup tests
This commit is contained in:
parent
a2d2edabaf
commit
46982e68f7
1 changed files with 1 additions and 2 deletions
|
@ -155,8 +155,7 @@ describe('Application life cycle test', function () {
|
|||
function pushFile() {
|
||||
const env = Object.create(process.env);
|
||||
env.GIT_SSH = __dirname + '/git_ssh_wrapper.sh';
|
||||
const defaultBranch = app.manifest.version === '1.24.0' ? 'main' : 'master';
|
||||
execSync(`touch newfile && git add newfile && git commit -a -mx && git push ssh://git@${app.fqdn}:${SSH_PORT}/${username}/${reponame} ${defaultBranch}`,
|
||||
execSync(`touch newfile && git add newfile && git commit -a -mx && git push ssh://git@${app.fqdn}:${SSH_PORT}/${username}/${reponame} main`,
|
||||
{ env: env, cwd: repodir });
|
||||
fs.rmSync(repodir, { recursive: true, force: true });
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue