Skip to content

Commit

Permalink
Fix migration test
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Dec 29, 2024
1 parent 78e2c68 commit 72fcd75
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@ describe('Migration v2.17.6-share-add-isDownloadable', () => {
addColumn: sinon.stub().resolves(),
removeColumn: sinon.stub().resolves(),
tableExists: sinon.stub().resolves(true),
describeTable: sinon.stub().resolves({ isDownloadable: undefined })
describeTable: sinon.stub().resolves({ isDownloadable: undefined }),
sequelize: {
Sequelize: {
DataTypes: {
BOOLEAN: DataTypes.BOOLEAN
}
}
}
}

logger = {
Expand Down

0 comments on commit 72fcd75

Please sign in to comment.