Merge pull request #33297 from overleaf/bg-fix-acceptance-tests-in-dev-env

fix: update migration commands to use yarn instead of east
GitOrigin-RevId: 9cfcc393cfc1855e1edba6ba90ebb7b3a76ecb6b
This commit is contained in:
Brian Gough
2026-04-30 10:25:15 +01:00
committed by Copybot
parent 7f7556cf6a
commit 8a8679eb78

View File

@@ -28,7 +28,7 @@ describe('BackFillUsersAnalyticsId', function () {
beforeEach('run migration', function (done) {
exec(
'cd ../../tools/migrations && east migrate -t saas --force 20260424120000_back_fill_users_analyticsId',
'cd ../../tools/migrations && yarn run migrations migrate -t saas --force 20260424120000_back_fill_users_analyticsId',
done
)
})
@@ -65,7 +65,7 @@ describe('BackFillUsersAnalyticsId', function () {
describe('after rolling back', function () {
beforeEach(function (done) {
exec(
'cd ../../tools/migrations && east rollback -t saas --force 20260424120000_back_fill_users_analyticsId',
'cd ../../tools/migrations && yarn run migrations rollback -t saas --force 20260424120000_back_fill_users_analyticsId',
done
)
})