@@ -798,7 +798,7 @@ module.exports = () => {
798798 } ) ;
799799 } ) ;
800800
801- describe . skip ( 'POST /api/lhcFills' , ( ) => {
801+ describe ( 'POST /api/lhcFills' , ( ) => {
802802 it ( 'should return 201 if valid data is provided' , async ( ) => {
803803 const response = await request ( server )
804804 . post ( '/api/lhcFills' )
@@ -833,7 +833,7 @@ module.exports = () => {
833833 } ) ;
834834 } ) ;
835835 } ) ;
836- describe . skip ( 'PATCH /api/lhcFills/:fillNumber' , ( ) => {
836+ describe ( 'PATCH /api/lhcFills/:fillNumber' , ( ) => {
837837 it ( 'should return 400 if the wrong id is provided' , ( done ) => {
838838 request ( server )
839839 . patch ( '/api/lhcFills/99999' )
@@ -872,7 +872,7 @@ module.exports = () => {
872872 } ) ;
873873 } ) ;
874874
875- describe . skip ( 'GET /api/lhcFills/:fillNumber/runs/:runNumber' , ( ) => {
875+ describe ( 'GET /api/lhcFills/:fillNumber/runs/:runNumber' , ( ) => {
876876 it ( 'should return 200 and an array for a normal request' , ( done ) => {
877877 request ( server )
878878 . get ( '/api/lhcFills/1/runs/50' )
@@ -904,7 +904,7 @@ module.exports = () => {
904904 } ) ;
905905 } ) ;
906906 } ) ;
907- describe . skip ( 'GET /api/lhcFills/:fillNumber' , ( ) => {
907+ describe ( 'GET /api/lhcFills/:fillNumber' , ( ) => {
908908 it ( 'should return 200 and an array for a normal request' , async ( ) => {
909909 const response = await request ( server ) . get ( '/api/lhcFills/1' ) ;
910910 expect ( response . status ) . to . equal ( 200 ) ;
@@ -934,7 +934,7 @@ module.exports = () => {
934934 } ) ;
935935 } ) ;
936936 } ) ;
937- describe . skip ( 'GET /api/lhcFills/:fillNumber/runs' , ( ) => {
937+ describe ( 'GET /api/lhcFills/:fillNumber/runs' , ( ) => {
938938 it ( 'should return 200 and an array for a normal request' , ( done ) => {
939939 request ( server )
940940 . get ( '/api/lhcFills/1/runs' )
@@ -952,15 +952,15 @@ module.exports = () => {
952952 } ) ;
953953 } ) ;
954954
955- describe . skip ( 'GET /api/lhcFills/:lhcFillNumber/logs/' , ( ) => {
955+ describe ( 'GET /api/lhcFills/:lhcFillNumber/logs/' , ( ) => {
956956 it ( 'should successfully return a 200 response containing the logs linked to a given LHC fill' , async ( ) => {
957957 const response = await request ( server ) . get ( '/api/lhcFills/6/logs' ) ;
958958 expect ( response . status ) . to . equal ( 200 ) ;
959959 expect ( response . body . data ) . to . lengthOf ( 2 ) ;
960960 } ) ;
961961 } ) ;
962962
963- describe . skip ( 'GET /api/lhcFills/:fillNumber/runs/:runNumber' , ( ) => {
963+ describe ( 'GET /api/lhcFills/:fillNumber/runs/:runNumber' , ( ) => {
964964 it ( 'should successfully return a 200 response containing the fills that are ended in the given period' , async ( ) => {
965965 const firstCreatedAt = new Date ( '2019-08-09 18:00:00' ) ;
966966 const secondCreatedAt = new Date ( '2019-08-09 20:00:00' ) ;
0 commit comments