ext(affordances): seed shared/form-affordances/ + barrel test
This commit is contained in:
@@ -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');
|
||||
});
|
||||
});
|
||||
5
extension/src/shared/form-affordances/index.ts
Normal file
5
extension/src/shared/form-affordances/index.ts
Normal 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 {};
|
||||
Reference in New Issue
Block a user