diff --git a/src/main/docker/gitsearch.yml b/src/main/docker/gitsearch.yml
index bffb3c353b3833b38f8ef95a592c58f885877225..60289973c32fd9e508c6e7345ca0763e363ceb76 100644
--- a/src/main/docker/gitsearch.yml
+++ b/src/main/docker/gitsearch.yml
@@ -1,8 +1,6 @@
 version: '3.5'
 services:
   gitsearch-app:
-    # image: docker.uibk.ac.at:443/csar9407/gitsearch:staging-3c2e4895e32dd72aa90f64d7ec7584d656f4d18b
-    # image: gitsearch:latest
     image: sharing-codeability.uibk.ac.at:5051/sharing/codeability-sharing-platform
     container_name: sharing_search
     environment:
diff --git a/src/test/javascript/e2e/entities/likes/likes.spec.ts b/src/test/javascript/e2e/entities/likes/likes.spec.ts
index c9a6c793dbc4849a8df248684b24a235975e0f05..deec05313e54819df3bb9524834ff457cdfe025c 100644
--- a/src/test/javascript/e2e/entities/likes/likes.spec.ts
+++ b/src/test/javascript/e2e/entities/likes/likes.spec.ts
@@ -20,8 +20,7 @@ describe('Likes e2e test', () => {
     signInPage = await navBarPage.getSignInPage();
     await signInPage.autoSignInUsing(username, password);
     await browser.wait(ec.visibilityOf(navBarPage.entityMenu), 5000);
-    // await navBarPage.clickOnEntityMenu();
-    await browser.sleep(5000);
+    await browser.sleep(1000);
   });
 
   it('should load Likes', async () => {
@@ -39,38 +38,6 @@ describe('Likes e2e test', () => {
     await likesUpdatePage.cancel();
   });
 
-  // it('should create and save Likes', async () => {
-  //   const nbButtonsBeforeCreate = await likesComponentsPage.countDeleteButtons();
-
-  //   await likesComponentsPage.clickOnCreateButton();
-
-  //   await promise.all([
-  //     likesUpdatePage.setDateInput('2000-12-31'),
-  //     likesUpdatePage.setUserIDInput('5'),
-  //     likesUpdatePage.setProjectIDInput('5'),
-  //   ]);
-
-  //   expect(await likesUpdatePage.getDateInput()).to.eq('2000-12-31', 'Expected date value to be equals to 2000-12-31');
-  //   expect(await likesUpdatePage.getUserIDInput()).to.eq('5', 'Expected userID value to be equals to 5');
-  //   expect(await likesUpdatePage.getProjectIDInput()).to.eq('5', 'Expected projectID value to be equals to 5');
-
-  //   await likesUpdatePage.save();
-  //   expect(await likesUpdatePage.getSaveButton().isPresent(), 'Expected save button disappear').to.be.false;
-
-  //   expect(await likesComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeCreate + 1, 'Expected one more entry in the table');
-  // });
-
-  // it('should delete last Likes', async () => {
-  //   const nbButtonsBeforeDelete = await likesComponentsPage.countDeleteButtons();
-  //   await likesComponentsPage.clickOnLastDeleteButton();
-
-  //   likesDeleteDialog = new LikesDeleteDialog();
-  //   expect(await likesDeleteDialog.getDialogTitle()).to.eq('gitsearchApp.likes.delete.question');
-  //   await likesDeleteDialog.clickOnConfirmButton();
-
-  //   expect(await likesComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeDelete - 1);
-  // });
-
   after(async () => {
     await navBarPage.autoSignOut();
   });
diff --git a/src/test/javascript/e2e/entities/statistics/statistics.spec.ts b/src/test/javascript/e2e/entities/statistics/statistics.spec.ts
index 60d369eb656e4c3145e51e76f15eadbe4c10cf1c..75e718d12a5f98dc1aa2c3008b9ebd0d859dca22 100644
--- a/src/test/javascript/e2e/entities/statistics/statistics.spec.ts
+++ b/src/test/javascript/e2e/entities/statistics/statistics.spec.ts
@@ -20,7 +20,6 @@ describe('Statistics e2e test', () => {
     signInPage = await navBarPage.getSignInPage();
     await signInPage.autoSignInUsing(username, password);
     await browser.wait(ec.visibilityOf(navBarPage.entityMenu), 5000);
-    // await navBarPage.clickOnEntityMenu();
   });
 
   it('should load Statistics', async () => {
@@ -38,39 +37,6 @@ describe('Statistics e2e test', () => {
     await statisticsUpdatePage.cancel();
   });
 
-  // it('should create and save Statistics', async () => {
-  //   const nbButtonsBeforeCreate = await statisticsComponentsPage.countDeleteButtons();
-
-  //   await statisticsComponentsPage.clickOnCreateButton();
-
-  //   await promise.all([
-  //     statisticsUpdatePage.setViewsInput('5'),
-  //     statisticsUpdatePage.setDownloadsInput('5'),
-  //     statisticsUpdatePage.setExerciseIDInput('5'),
-  //   ]);
-
-  //   expect(await statisticsUpdatePage.getViewsInput()).to.eq('5', 'Expected views value to be equals to 5');
-  //   expect(await statisticsUpdatePage.getDownloadsInput()).to.eq('5', 'Expected downloads value to be equals to 5');
-  //   expect(await statisticsUpdatePage.getExerciseIDInput()).to.eq('5', 'Expected exerciseID value to be equals to 5');
-
-  //   await statisticsUpdatePage.save();
-  //   expect(await statisticsUpdatePage.getSaveButton().isPresent(), 'Expected save button disappear').to.be.false;
-
-  //   expect(await statisticsComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeCreate + 1, 'Expected one more entry in the table');
-  // });
-
-  // it('should delete last Statistics', async () => {
-  //   const nbButtonsBeforeDelete = await statisticsComponentsPage.countDeleteButtons();
-  //   browser.executeScript('window.scrollTo(0,document.body.scrollHeight)');
-  //   await statisticsComponentsPage.clickOnLastDeleteButton();
-
-  //   statisticsDeleteDialog = new StatisticsDeleteDialog();
-  //   expect(await statisticsDeleteDialog.getDialogTitle()).to.eq('gitsearchApp.statistics.delete.question');
-  //   await statisticsDeleteDialog.clickOnConfirmButton();
-
-  //   expect(await statisticsComponentsPage.countDeleteButtons()).to.eq(nbButtonsBeforeDelete - 1);
-  // });
-
   after(async () => {
     await navBarPage.autoSignOut();
   });