testeranto 0.79.44 → 0.79.46

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.
@@ -0,0 +1,43 @@
1
+ FROM node:18.18.0
2
+
3
+ RUN apt-get update && \
4
+ apt-get install -y --no-install-recommends \
5
+ python3 \
6
+ make \
7
+ g++ && \
8
+ rm -rf /var/lib/apt/lists/*
9
+
10
+ RUN yarn global add node-gyp
11
+
12
+ RUN mkdir -p /usr/src/app
13
+ RUN mkdir -p /usr/src/app/docs
14
+ WORKDIR /usr/src/app
15
+ COPY package.json /usr/src/app
16
+ RUN yarn install
17
+ COPY ./src/ /usr/src/app/src
18
+ COPY ./subPackages/ /usr/src/app/subPackages
19
+ COPY ./testeranto.mts /usr/src/app/testeranto.mts
20
+ COPY ./tsconfig.json /usr/src/app/tsconfig.json
21
+ COPY ./init.mts /usr/src/app/init.mts
22
+
23
+ RUN yarn run init
24
+ RUN yarn bundle
25
+ # COPY ./docs/ /usr/src/app/docs
26
+ # # COPY ./testeranto.json /usr/src/app/testeranto.json
27
+ # # COPY prebuild.sh /usr/src/app
28
+ # # COPY postBuild.sh /usr/src/app
29
+
30
+
31
+ # # RUN yarn build
32
+
33
+ # RUN cp ./node_modules/testeranto/dist/prebuild/TaskManBackEnd.mjs /usr/src/app/TaskManBackEnd.mjs
34
+ # RUN cp ./node_modules/testeranto/dist/prebuild/TaskManFrontEnd.js /usr/src/app/TaskManFrontEnd.js
35
+ # RUN cp ./node_modules/testeranto/dist/prebuild/TaskManFrontEnd.css /usr/src/app/TaskManFrontEnd.css
36
+
37
+ # # RUN ts-node-esm ./node_modules/testeranto/dist/prebuild/TaskManBackEnd.mjs
38
+
39
+ # EXPOSE 3000
40
+ # EXPOSE 27017
41
+ # ENV MONGO_HOST=host.docker.internal
42
+ # # # CMD ['yarn', 'testeranto-testrun', '&', 'yarn', 'testeranto-taskman']
43
+ CMD ["node", "./Puppeteer.mjs"]
package/Report.Dockerfile CHANGED
@@ -1,6 +1,5 @@
1
1
  FROM node:18.18.0
2
2
 
3
- # Install build dependencies
4
3
  RUN apt-get update && \
5
4
  apt-get install -y --no-install-recommends \
6
5
  python3 \
@@ -18,10 +17,9 @@ RUN yarn install
18
17
  COPY ./src/ /usr/src/app/src
19
18
  COPY ./subPackages/ /usr/src/app/subPackages
20
19
  COPY ./testeranto.mts /usr/src/app/testeranto.mts
21
- # COPY ./features.test.mts /usr/src/app/features.test.mts
22
20
  COPY ./tsconfig.json /usr/src/app/tsconfig.json
23
-
24
- RUN yarn init
21
+ COPY ./init.mts /usr/src/app/init.mts
22
+ RUN yarn run init
25
23
  RUN yarn report
26
24
  # COPY ./docs/ /usr/src/app/docs
27
25
  # # COPY ./testeranto.json /usr/src/app/testeranto.json
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.44",
4
+ "version": "0.79.46",
5
5
  "engines": {
6
6
  "node": "18.18.0"
7
7
  },