Some example tests should be enabled by default :)

This commit is contained in:
2023-06-21 20:34:53 +02:00
parent c1faa879a3
commit fec01c4cfe
+2 -2
View File
@@ -13,7 +13,7 @@ export type Test = {
export const tests = writable<Test[]>([
{
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<Test[]>([
},
{
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',