diff --git a/src/lib/server/tests.ts b/src/lib/server/tests.ts index aaf9238..ea71fb8 100644 --- a/src/lib/server/tests.ts +++ b/src/lib/server/tests.ts @@ -13,7 +13,7 @@ export type Test = { export const tests = writable([ { id: Math.random().toString(36).slice(2), - enabled: false, + enabled: true, chance: 0.5, title: 'Test 1', body: 'This is the body of test 1', @@ -21,7 +21,7 @@ export const tests = writable([ }, { id: Math.random().toString(36).slice(2), - enabled: false, + enabled: true, chance: 0.5, title: 'Test 2', body: 'This is the body of test 2',