Files
grafana/public/app/features/datasources/__snapshots__/DashboardsTable.test.tsx.snap

89 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-10-17 16:14:45 +02:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Render should render component 1`] = `
<table
className="filter-table"
>
<tbody />
</table>
`;
exports[`Render should render table 1`] = `
<table
className="filter-table"
>
<tbody>
<tr
key="0-0"
>
<td
className="width-1"
>
<Icon
name="apps"
2018-10-17 16:14:45 +02:00
/>
</td>
<td>
<span>
Graphite Carbon Metrics
</span>
</td>
<td
style={
Object {
"textAlign": "right",
}
}
>
<Button
2018-10-17 16:14:45 +02:00
onClick={[Function]}
size="sm"
variant="secondary"
2018-10-17 16:14:45 +02:00
>
Import
</Button>
2018-10-17 16:14:45 +02:00
</td>
</tr>
<tr
key="0-1"
>
<td
className="width-1"
>
<Icon
name="apps"
2018-10-17 16:14:45 +02:00
/>
</td>
<td>
<a
href=""
>
Graphite Carbon Metrics
</a>
</td>
<td
style={
Object {
"textAlign": "right",
}
}
>
<Button
2018-10-17 16:14:45 +02:00
onClick={[Function]}
size="sm"
variant="secondary"
2018-10-17 16:14:45 +02:00
>
Update
</Button>
<Button
icon="trash-alt"
2018-10-17 16:14:45 +02:00
onClick={[Function]}
size="sm"
variant="destructive"
/>
2018-10-17 16:14:45 +02:00
</td>
</tr>
</tbody>
</table>
`;