From fec01c4cfee0a11b168e2ccb84065138fa1f5157 Mon Sep 17 00:00:00 2001 From: Jace <2439560-jacefax@users.noreply.gitlab.com> Date: Wed, 21 Jun 2023 20:34:53 +0200 Subject: [PATCH] Some example tests should be enabled by default :) --- src/lib/server/tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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',