diff --git a/package.json b/package.json index 150698b2b0ab..e4bddd7ee5a0 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "test:debug": "TZ=utc NODE_OPTIONS='--inspect-brk --experimental-vm-modules' jest --runInBand", "perf-test": "NODE_OPTIONS=--experimental-vm-modules npx reassure", "typecheck": "NODE_OPTIONS=--max_old_space_size=8192 tsc", - "lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=319 --cache --cache-location=node_modules/.cache/eslint", + "lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=316 --cache --cache-location=node_modules/.cache/eslint", "lint-changed": "NODE_OPTIONS=--max_old_space_size=8192 ./scripts/lintChanged.sh", "lint-watch": "npx eslint-watch --watch --changed", "shellcheck": "./scripts/shellCheck.sh", diff --git a/src/libs/E2E/actions/e2eLogin.ts b/src/libs/E2E/actions/e2eLogin.ts index c1d3a7d20338..a57aa9cb261f 100644 --- a/src/libs/E2E/actions/e2eLogin.ts +++ b/src/libs/E2E/actions/e2eLogin.ts @@ -25,7 +25,8 @@ const e2eUserCredentials = { export default function (): Promise { const waitForBeginSignInToFinish = (): Promise => new Promise((resolve) => { - const id = Onyx.connect({ + // We opted for `connectWithoutView` here as this is being used for mocking data for E2E flow. + const id = Onyx.connectWithoutView({ key: ONYXKEYS.CREDENTIALS, callback: (credentials) => { // beginSignUp writes to credentials.login once the API call is complete @@ -43,7 +44,8 @@ export default function (): Promise { // Subscribe to auth token, to check if we are authenticated return new Promise((resolve, reject) => { - const connection = Onyx.connect({ + // We opted for `connectWithoutView` here as this is being used for mocking data for E2E flow. + const connection = Onyx.connectWithoutView({ key: ONYXKEYS.SESSION, callback: (session) => { if (session?.authToken == null || session.authToken.length === 0) {