Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/fixtures/competency/renamed-setting-mapping/SCENARIO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Renamed setting across API and frontend

Question: Do the API and frontend enforce the same attachment-size setting despite different identifiers?

Expected: trace the concrete values/usages and represent the mapping as evidence-backed or inferred; lexical name equality is neither required nor sufficient.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
MAX_ATTACHMENT_BYTES = 10485760

def attachment_limit():
return MAX_ATTACHMENT_BYTES
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const maxUploadSize = 10 * 1024 * 1024;
export function acceptsUpload(bytes: number) { return bytes <= maxUploadSize; }
Loading