Skip to content
Snippets Groups Projects
Unverified Commit c025e516 authored by Jed Fox's avatar Jed Fox Committed by GitHub
Browse files

Fix error when running importTransactions from the API (#819)

parent 649b4c90
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ test.describe('Onboarding', () => {
path.resolve(__dirname, 'data/ynab4-demo-budget.zip'),
);
await expect(budgetPage.budgetTable).toBeVisible();
await expect(budgetPage.budgetTable).toBeVisible({ timeout: 30000 });
const accountPage = await navigation.goToAccountPage(
'Account1 with Starting Balance',
......
......@@ -4,4 +4,8 @@ function send(type, args) {
// Nothing
}
module.exports = { init, send };
function getNumClients() {
return 1;
}
module.exports = { init, send, getNumClients };
......@@ -112,6 +112,4 @@ function getNumClients() {
return 1;
}
function tapIntoAPI() {}
module.exports = { init, send, getNumClients, tapIntoAPI };
module.exports = { init, send, getNumClients };
---
category: Bugfix
authors: [j-f1]
---
Fix error when running importTransactions from the API
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment