|
@@ -9,6 +9,7 @@ import { Header } from '../Components/Test/Cleaver/Header';
|
9
|
9
|
import { useSelector, useDispatch } from 'react-redux';
|
10
|
10
|
import { setRole } from '../Slices/userSlice'
|
11
|
11
|
import { Loading } from '../Components/Generics/loading';
|
|
12
|
+import { Completed } from './Pruebas/Completed';
|
12
|
13
|
|
13
|
14
|
export function Prueba() {
|
14
|
15
|
|
|
@@ -88,6 +89,10 @@ export function Prueba() {
|
88
|
89
|
return <Loading/>
|
89
|
90
|
}
|
90
|
91
|
|
|
92
|
+ if(asignacion.estadoFinal === 'FINALY_TEST'){
|
|
93
|
+ return <Completed/>
|
|
94
|
+ }
|
|
95
|
+
|
91
|
96
|
if (DOING_STATES.includes(asignacion.estadoFinal)) {
|
92
|
97
|
return <Cleaver />
|
93
|
98
|
}
|