ci: Add test support for external database adapter (#8883)

This commit is contained in:
Doug Drechsel
2024-05-14 18:48:20 -04:00
committed by GitHub
parent 242002432f
commit eba9dfff7b
4 changed files with 34 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
module.exports = function (options) {
return {
options: options,
send: function () {},
getDatabaseURI: function () {
return options.databaseURI;
},
};
};