feat(extension): add history/revoke/restore glyph constants
This commit is contained in:
@@ -68,3 +68,17 @@ describe('Stream A glyphs (vault tab + type icons)', () => {
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
describe('management-surface glyphs', () => {
|
||||
it('exposes a history glyph', () => {
|
||||
expect(glyphs.GLYPH_HISTORY).toBe('◷');
|
||||
});
|
||||
|
||||
it('exposes a revoke glyph distinct from reveal/hide semantics', () => {
|
||||
expect(glyphs.GLYPH_REVOKE).toBe('⊘');
|
||||
});
|
||||
|
||||
it('exposes a restore glyph for trash actions', () => {
|
||||
expect(glyphs.GLYPH_RESTORE).toBe('⤺');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user