Merge branch 'master' into feat/automation-step-naming-updates

This commit is contained in:
Peter Clement 2024-09-11 15:07:09 +01:00 committed by GitHub
commit a68552f038
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 3 additions and 1 deletions

Binary file not shown.

Binary file not shown.

@ -1 +1 @@
Subproject commit 048c37ecd921340614bf61a76a774aaa46176569
Subproject commit 7899d07904d89d48954dd500da7b5dec32b781dd

View File

@ -3,6 +3,7 @@ export * as processors from "./processors"
export * as analytics from "./analytics"
export { default as identification } from "./identification"
export * as backfillCache from "./backfill"
export { publishEvent } from "./events"
import { processors } from "./processors"

View File

@ -2,6 +2,7 @@ import { it, expect, describe, vi } from "vitest"
import AISettings from "./index.svelte"
import { render } from "@testing-library/svelte"
import { admin, licensing } from "stores/portal"
import { notifications } from "@budibase/bbui"
vi.spyOn(notifications, "error").mockImplementation(vi.fn)
vi.spyOn(notifications, "success").mockImplementation(vi.fn)