github
261 of 407 branches covered (64.13%)
Branch coverage included in aggregate %.
996 of 1194 new or added lines in 16 files covered. (83.42%)
39 existing lines in 6 files now uncovered.3794 of 4299 relevant lines covered (88.25%)
6.44 hits per line
1 |
import React from 'react'; |
1✔ |
2 |
import { Outlet } from 'react-router-dom'; |
1✔ |
3 |
|
1✔ |
4 |
const DashboarInnerLayout = () => {
|
1✔ |
UNCOV
5
|
return (
|
× |
UNCOV
6
|
<div className="flex flex-col items-start w-full h-full ">
|
× |
UNCOV
7
|
<Outlet /> |
× |
UNCOV
8
|
</div> |
× |
UNCOV
9
|
); |
× |
UNCOV
10
|
}; |
× |
11 |
|
1✔ |
12 |
export default DashboarInnerLayout; |
1✔ |