File tree 2 files changed +12
-13
lines changed
2 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,15 @@ jobs:
25
25
node-version : ${{ matrix.node-version }}
26
26
cache : ' yarn'
27
27
cache-dependency-path : ' client/yarn.lock'
28
- - name : Install dependencies
29
- uses : borales/actions-yarn@v4
30
- with :
31
- cmd : install
32
- dir : client
33
- - name : Run tests
34
- uses : borales/actions-yarn@v4
35
- with :
36
- cmd : test
37
- dir : client
28
+ - run : |
29
+ cd client && yarn install && yarn test
30
+ # - name: Install dependencies
31
+ # uses: borales/actions-yarn@v4
32
+ # with:
33
+ # cmd: install
34
+ # dir: client
35
+ # - name: Run tests
36
+ # uses: borales/actions-yarn@v4
37
+ # with:
38
+ # cmd: test
39
+ # dir: client
Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ const dirname = currentDirName(import.meta.url);
13
13
14
14
export default {
15
15
testEnvironment : "jsdom" ,
16
- testEnvironmentOptions : {
17
- url : 'http://localhost'
18
- } ,
19
16
moduleNameMapper : {
20
17
"react-markdown" : path . resolve ( dirname , "./mocks/react-markdown.js" ) ,
21
18
"\\.md\\?url$" : path . resolve ( dirname , "./mocks/markdown-url-module.js" ) ,
You can’t perform that action at this time.
0 commit comments