File tree Expand file tree Collapse file tree 3 files changed +0
-17
lines changed
packages/model/src/entities/EditorDocument Expand file tree Collapse file tree 3 files changed +0
-17
lines changed Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:1
22
3- # Comments are provided throughout this file to help you get started.
4- # If you need more help, visit the Dockerfile reference guide at
5- # https://docs.docker.com/go/dockerfile-reference/
6-
73ARG NODE_VERSION=20.9.0
84
95# ###############################################################################
@@ -21,8 +17,6 @@ RUN corepack prepare yarn@4.0.1 --activate
2117FROM base AS deps
2218
2319# Download dependencies as a separate step to take advantage of Docker's caching.
24- # Leverage bind mounts to package.json and yarn.lock to avoid having to copy them
25- # into this layer.
2620COPY .yarnrc.yml package.json yarn.lock ./
2721COPY .yarn .yarn
2822COPY packages/model/package.json packages/model/package.json
Original file line number Diff line number Diff line change 1- # Comments are provided throughout this file to help you get started.
2- # If you need more help, visit the Docker compose reference guide at
3- # https://docs.docker.com/go/compose-spec-reference/
4-
5- # Here the instructions define your application as a service called "server".
6- # This service is built from the Dockerfile in the current directory.
7- # You can add other services your application may depend on here, such as a
8- # database or a cache. For examples, see the Awesome Compose repository:
9- # https://github.com/docker/awesome-compose
101services :
112 wsserver :
123 build :
Original file line number Diff line number Diff line change @@ -112,8 +112,6 @@ describe('EditorDocument', () => {
112112
113113 doc . clear ( ) ;
114114
115- console . log ( doc . serialized ) ;
116-
117115 expect ( doc . serialized . blocks ) . toHaveLength ( 0 ) ;
118116 } ) ;
119117 } ) ;
You can’t perform that action at this time.
0 commit comments