ext(affordances): seed shared/form-affordances/ + barrel test

This commit is contained in:
adlee-was-taken
2026-05-01 16:53:58 -04:00
parent 79b10d6a18
commit 6eeb292fd0
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { describe, it, expect } from 'vitest';
import * as affordances from '../index';
describe('form-affordances barrel', () => {
it('exports nothing yet but the module loads', () => {
expect(typeof affordances).toBe('object');
});
});

View File

@@ -0,0 +1,5 @@
/// Shared form affordance modules. Each named export wires one family of
/// smart-input behavior (url, group, password, totp, notes) into a mounted
/// form element. Wired by `popup/components/types/login.ts` after the form
/// HTML is rendered.
export {};