mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 08:47:40 +00:00
style(line): format files to unblock ci check
This commit is contained in:
@@ -26,11 +26,7 @@ function createRuntime() {
|
||||
return { runtime, probeLineBot, monitorLineProvider };
|
||||
}
|
||||
|
||||
function createStartAccountCtx(params: {
|
||||
token: string;
|
||||
secret: string;
|
||||
runtime: unknown;
|
||||
}) {
|
||||
function createStartAccountCtx(params: { token: string; secret: string; runtime: unknown }) {
|
||||
return {
|
||||
account: {
|
||||
accountId: "default",
|
||||
@@ -58,7 +54,9 @@ describe("linePlugin gateway.startAccount", () => {
|
||||
runtime: {},
|
||||
}) as never,
|
||||
),
|
||||
).rejects.toThrow('LINE webhook mode requires a non-empty channel secret for account "default".');
|
||||
).rejects.toThrow(
|
||||
'LINE webhook mode requires a non-empty channel secret for account "default".',
|
||||
);
|
||||
expect(monitorLineProvider).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user