Skip to content

Commit bc035c6

Browse files
committed
use e2e suite instead of e2e2
1 parent 6eb559a commit bc035c6

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/dojo-e2e.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,9 @@ jobs:
5252
run: node ./scripts/prep-dojo-everything.js -e2e
5353

5454
- name: Install e2e dependencies
55-
working-directory: typescript-sdk/apps/dojo/e2e2
55+
working-directory: typescript-sdk/apps/dojo/e2e
5656
run: |
57-
pnpm install --frozen-lockfile
58-
pnpm dlx playwright install --with-deps
57+
pnpm instal
5958
6059
- name: write langgraph env files
6160
working-directory: typescript-sdk/integrations/langgraph
@@ -71,20 +70,20 @@ jobs:
7170
echo "LANGSMITH_API_KEY=${LANGSMITH_API_KEY}" >> python/ag_ui_langgraph/.env
7271
7372
- name: Run dojo+agents and tests
74-
working-directory: typescript-sdk/apps/dojo/e2e2
73+
working-directory: typescript-sdk/apps/dojo/e2e
7574
env:
7675
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
7776
LANGSMITH_API_KEY: ${{ secrets.LANGSMITH_API_KEY }}
7877
run: |
7978
node ../scripts/run-dojo-everything.js &
8079
npx wait-port 9999
8180
sleep 10
82-
pnpm exec playwright test --reporter=dot
81+
pnpm test
8382
8483
- name: Upload traces
8584
if: always() # Uploads artifacts even if tests fail
8685
uses: actions/upload-artifact@v4
8786
with:
8887
name: playwright-traces
89-
path: typescript-sdk/apps/dojo/e2e2/test-results/
88+
path: typescript-sdk/apps/dojo/e2e/test-results/
9089
retention-days: 7

0 commit comments

Comments
 (0)