Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

services:
backend:
image: ghcr.io/ydb-platform/local-ydb:nightly
image: ghcr.io/ydb-platform/local-ydb:25.1
ports:
- 2135:2135
- 8765:8765
Expand All @@ -24,6 +24,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
fetch-depth: 0

- name: Setup Node.js
Expand Down
2 changes: 1 addition & 1 deletion tests/suites/tenant/queryEditor/queryEditor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ test.describe('Test Query Editor', async () => {
await expect(queryEditor.waitForStatus('Stopped')).resolves.toBe(true);
});

test('Streaming query shows some results and banner when stop button is clicked', async ({
test.only('Streaming query shows some results and banner when stop button is clicked', async ({
page,
}) => {
// Safari in playwright has problem with painting an array
Expand Down
Loading