1
2
3
4
5
6
7
8
9
10
import { testMutateSemantics } from "https://esm.town/v/stevekrouse/testMutateSemantics";
export const authenticatedCanMutate = (api) =>
testMutateSemantics({
stateName: "@stevekrouse.testState",
api,
mutateExpected: true,
mutator: (now) => `export let @stevekrouse.testState = ${now}`,
authenticated: true,
});