From ea6b475a72848f41331ae511bc7d61f96cec779b Mon Sep 17 00:00:00 2001 From: Gao Sun Date: Fri, 15 Sep 2023 01:02:09 +0800 Subject: [PATCH] chore: fix lint errors --- .../integration-tests/src/ui-helpers/expect-experience.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/integration-tests/src/ui-helpers/expect-experience.ts b/packages/integration-tests/src/ui-helpers/expect-experience.ts index 9224f1d9d..a18ea6bc2 100644 --- a/packages/integration-tests/src/ui-helpers/expect-experience.ts +++ b/packages/integration-tests/src/ui-helpers/expect-experience.ts @@ -181,6 +181,8 @@ export default class ExpectExperience extends ExpectPage { } protected throwNoOngoingExperienceError() { - return this.throwError('The experience has not started yet. Use `startWith` to start the experience.'); + return this.throwError( + 'The experience has not started yet. Use `startWith` to start the experience.' + ); } }