Skip to content

Commit

Permalink
changed archive name
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbysunil14 committed Jan 2, 2025
1 parent 16802de commit 1919b12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-regression-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:

# Archive screenshots
- name: Archive screenshots
if: always() && runner.os == 'linux' && matrix.targetVSCode == 'latest'
if: always()
uses: actions/upload-artifact@v3
with:
name: liberty-run-tests-screenshots-${{ github.sha }}
name: liberty-run-tests-screenshots-${{ runner.os }}-${{ matrix.targetVSCode }}
path: ./screenshots/*.png
if-no-files-found: warn
retention-days: 7
4 changes: 2 additions & 2 deletions src/test/GradleSingleModJakartaLSTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ describe('LSP4Jakarta LS test for snippet test', () => {
await editor.clearText();
}

await utils.delay(65000);
await utils.delay(85000);
await editor.typeText("rest");
await utils.delay(6000);

//open the assistant
const assist = await editor.toggleContentAssist(true);
await utils.delay(6000);
await utils.delay(10000);
await VSBrowser.instance.takeScreenshot("rest_class");
console.log("screenshot", VSBrowser.instance.getScreenshotsDir());
// toggle can return void, so we need to make sure the object is present
Expand Down

0 comments on commit 1919b12

Please sign in to comment.