- Add data-testid to 18 Vue components (Pages, Blocks, Features, Layouts, Primitives)
- Naming convention: {component-kebab}-{element-description}
- 98 total data-testid attributes added
- Target elements: buttons, links, inputs, modals, navigation
- No logic/styling changes - attributes only
6 lines
87 B
Vue
6 lines
87 B
Vue
<template>
|
|
<div data-testid="main-layout">
|
|
<slot />
|
|
</div>
|
|
</template>
|