Skip to content

Commit 041a282

Browse files
committed
Merge branch 'staging' of github.com:ustaxcourt/ef-cms into 9780-bug
2 parents a17d0df + 5909e41 commit 041a282

File tree

161 files changed

+1657
-681
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+1657
-681
lines changed

.github/workflows/pdfs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ jobs:
2828
comment_on_pr: false
2929
- name: Setup
3030
run: |
31-
docker build --platform=linux/amd64 -t efcms -f Dockerfile .
31+
docker build --platform=linux/amd64 -t ef-cms-us-east-1 -f Dockerfile .
3232
docker build --platform=linux/amd64 -t efcms-local -f Dockerfile-local .
3333
docker run --platform=linux/amd64 -i --rm -v `pwd`/shared/test-output:/home/app/shared/test-output efcms-local sh -c "npm run test:document-generation"

.run/API_Docker.run.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="API Docker" type="ChromiumRemoteDebugType" factoryName="Chromium Remote" port="9231" restartOnDisconnect="true">
3+
<method v="2">
4+
<option name="RunConfigurationTask" enabled="true" run_configuration_name="Start Docker" run_configuration_type="ShConfigurationType" />
5+
</method>
6+
</configuration>
7+
</component>

.run/DAWSON_Docker.run.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="DAWSON Docker" type="CompoundRunConfigurationType">
3+
<toRun name="API Docker" type="ChromiumRemoteDebugType" />
4+
<method v="2" />
5+
</configuration>
6+
</component>

.run/DAWSON_local.run.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
<toRun name="API" type="NodeJSConfigurationType" />
44
<toRun name="Client" type="js.build_tools.npm" />
55
<toRun name="Public" type="js.build_tools.npm" />
6+
<method v="2" />
67
</configuration>
78
</component>

.run/Prepare_Local_Environment.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration default="false" name="Prepare Local Environment" type="ShConfigurationType">
33
<option name="SCRIPT_TEXT" value="" />
44
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
5-
<option name="SCRIPT_PATH" value="$PROJECT_DIR$/init-local.sh" />
5+
<option name="SCRIPT_PATH" value="$PROJECT_DIR$/debug-local-in-ide.sh" />
66
<option name="SCRIPT_OPTIONS" value="" />
77
<option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="true" />
88
<option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$" />

.run/Start_Docker.run.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Start Docker" type="ShConfigurationType">
3+
<option name="SCRIPT_TEXT" value="" />
4+
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
5+
<option name="SCRIPT_PATH" value="$PROJECT_DIR$/docker-local.sh" />
6+
<option name="SCRIPT_OPTIONS" value="" />
7+
<option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="true" />
8+
<option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$" />
9+
<option name="INDEPENDENT_INTERPRETER_PATH" value="true" />
10+
<option name="INTERPRETER_PATH" value="/bin/bash" />
11+
<option name="INTERPRETER_OPTIONS" value="" />
12+
<option name="EXECUTE_IN_TERMINAL" value="false" />
13+
<option name="EXECUTE_SCRIPT_FILE" value="true" />
14+
<envs>
15+
<env name="IDE_DEBUGGING" value="true" />
16+
</envs>
17+
<method v="2" />
18+
</configuration>
19+
</component>

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,28 @@
6363
"windows": {
6464
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
6565
}
66+
},
67+
{
68+
"name": "API Docker",
69+
"type": "node",
70+
"request": "attach",
71+
"port": 9231,
72+
"address": "localhost",
73+
"localRoot": "${workspaceFolder}",
74+
"remoteRoot": "/home/app",
75+
"skipFiles": ["<node_internals>/**"],
76+
"restart": true
6677
}
6778
],
6879
"compounds": [
6980
{
7081
"name": "DAWSON local",
7182
"configurations": ["API", "Client", "Public"]
83+
},
84+
{
85+
"name": "DAWSON Docker",
86+
"configurations": ["API Docker"],
87+
"preLaunchTask": "Start Docker"
7288
}
7389
]
7490
}

.vscode/tasks.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Start Docker",
6+
"type": "shell",
7+
"command": "npm run start:all:docker",
8+
"isBackground": true,
9+
"options": { "env": { "IDE_DEBUGGING": "true" } },
10+
"problemMatcher": {
11+
"owner": "custom",
12+
"pattern": { "regexp": "^$" },
13+
"background": {
14+
"activeOnStart": true,
15+
"beginsPattern": ".*",
16+
"endsPattern": "Debugger port is open.*"
17+
}
18+
},
19+
"presentation": { "reveal": "always", "panel": "new" }
20+
}
21+
]
22+
}

Dockerfile-local

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM efcms
1+
ARG TARGETARCH=amd64
2+
FROM ef-cms-us-east-1
23

34
COPY . /home/app
45

cypress/local-only/tests/integration/caseDetail/docketRecord/courtIssuedFiling/clerk-of-court-stamp-order.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ describe('Judge`s chambers stamps an order', () => {
114114
loginAsClerkOfCourt();
115115
cy.visit('/messages/my/inbox');
116116
cy.get(
117-
'.message-subject > .message-document-title > [data-testid="messages-individual-inbox-subject-cell"]',
117+
`.message-subject > .message-document-title > [data-testid="messages-individual-inbox-subject-cell-${docketNumber}"]`,
118118
)
119119
.first()
120120
.click();

0 commit comments

Comments
 (0)