Migrated VisitsTable test to react-testing-library, and removed latest references to enzyme

This commit is contained in:
Alejandro Celaya
2022-07-17 11:50:26 +02:00
parent 1ffd71e81f
commit 72399e7ccd
10 changed files with 87 additions and 951 deletions

View File

@@ -2,8 +2,7 @@ FROM node:16.15-alpine as node
COPY . /shlink-web-client
ARG VERSION="latest"
ENV VERSION ${VERSION}
# TODO Remove --force once enzyme was removed
RUN cd /shlink-web-client && npm ci --force && NODE_ENV=production npm run build
RUN cd /shlink-web-client && npm ci && NODE_ENV=production npm run build
FROM nginx:1.21-alpine
LABEL maintainer="Alejandro Celaya <alejandro@alejandrocelaya.com>"