Skip to content
Snippets Groups Projects
Unverified Commit e96b586a authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

Add metadata sync for external DBs (#14015)

parent 9f523be8
Branches
Tags
No related merge requests found
......@@ -290,4 +290,12 @@ function addQADatabase(engine, db_display_name, port) {
}).then(({ status }) => {
expect(status).to.equal(200);
});
// Make sure we have all the metadata because we'll need to use it in tests
cy.request("POST", "/api/database/2/sync_schema").then(({ status }) => {
expect(status).to.equal(200);
});
cy.request("POST", "/api/database/2/rescan_values").then(({ status }) => {
expect(status).to.equal(200);
});
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment