testeranto 0.79.55 → 0.79.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Bundle.Dockerfile CHANGED
@@ -1,11 +1,13 @@
1
1
  FROM node:18.18.0
2
-
3
2
  RUN apt-get update && \
4
3
  apt-get install -y --no-install-recommends \
5
4
  python3 \
6
5
  make \
7
6
  g++ && \
8
7
  rm -rf /var/lib/apt/lists/*
8
+ # FROM shivjm/node-chromium:node18-chromium81-alpine
9
+
10
+
9
11
 
10
12
  RUN yarn global add node-gyp
11
13
 
@@ -23,6 +25,10 @@ COPY ./bundle.mts /usr/src/app/bundle.mts
23
25
  COPY ./test.mts /usr/src/app/test.mts
24
26
 
25
27
  RUN yarn run init
28
+
29
+ RUN apt-get install chromium
30
+ RUN /usr/bin/chromium-browser --no-sandbox --version > /etc/chromium-version
31
+
26
32
  RUN yarn bundle
27
33
  # COPY ./docs/ /usr/src/app/docs
28
34
  # # COPY ./testeranto.json /usr/src/app/testeranto.json
package/Report.Dockerfile CHANGED
@@ -2,7 +2,6 @@ FROM node:18.18.0
2
2
 
3
3
  RUN apt-get update && \
4
4
  apt-get install -y --no-install-recommends \
5
- chromium \
6
5
  python3 \
7
6
  make \
8
7
  g++ && \
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "testeranto",
3
3
  "description": "teeny tiny tightly-typed typescript tests",
4
- "version": "0.79.55",
4
+ "version": "0.79.57",
5
5
  "engines": {
6
6
  "node": "18.18.0"
7
7
  },