From cca7a9ff38218788eb20b71b0d7d6af0b78b51f2 Mon Sep 17 00:00:00 2001 From: danis Date: Mon, 6 Feb 2023 13:12:23 +0300 Subject: [PATCH] removed useless docker and robot files --- back/test/robot/search/search.robot | 37 ----------------------------- front/Dockerfile.test | 7 ------ 2 files changed, 44 deletions(-) delete mode 100644 back/test/robot/search/search.robot delete mode 100644 front/Dockerfile.test diff --git a/back/test/robot/search/search.robot b/back/test/robot/search/search.robot deleted file mode 100644 index 636e9a5..0000000 --- a/back/test/robot/search/search.robot +++ /dev/null @@ -1,37 +0,0 @@ -# *** Settings *** -# Documentation Tests of the /search route. -# ... Ensures that the search routes are working properly. - -# Resource ../rest.resource - -# *** Test Cases *** -# Create artist and song -# [Documentation] Create everything to test a song search based on the artist -# # Create the artist -# &{resArtist}= POST -# ... /artist -# ... {"name": "Powerwolf"} -# Set Global Variable ${resArtist} -# Output -# Integer response status 201 -# # Create the song -# &{resSong}= POST -# ... /song -# ... {"name": "Sanctus Dominus", "difficulties": {}, "midiPath": "string", "musicXmlPath": "string", "artist":${resArtist.body.id}, "album": 0, "genre": 0} -# Set Global Variable ${resSong} -# Output -# Integer response status 201 - - - -# Search for the song based on artist -# [Documentation] I'll dance dance with my hands hands above my head -# # -# Log message -# &{get1}= GET -# ... /search/artist/${resArtist.body.id} -# Output -# Integer response status 200 -# Should Be Equal ${get1.body.id} ${resSong.body.id} -# [Teardown] DELETE /artist/${resArtist.body.id} -# DELETE /song/${resSong.body.id} diff --git a/front/Dockerfile.test b/front/Dockerfile.test deleted file mode 100644 index 1e1af47..0000000 --- a/front/Dockerfile.test +++ /dev/null @@ -1,7 +0,0 @@ -# run tests -FROM node:17 -WORKDIR /app -COPY package.json yarn.lock ./ -RUN yarn install -RUN yarn global add expo-cli -RUN yarn test \ No newline at end of file