diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 863a627d..03f289b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -219,6 +219,8 @@ jobs: run: npm run test-integration-${{ matrix.browser }} --workers=50% --forbid-only --suite=addon-fit - name: Integration tests (addon-image) run: npm run test-integration-${{ matrix.browser }} --workers=50% --forbid-only --suite=addon-image + - name: Integration tests (addon-kitty-graphics) + run: npm run test-integration-${{ matrix.browser }} --workers=50% --forbid-only --suite=addon-kitty-graphics - name: Integration tests (addon-progress) run: npm run test-integration-${{ matrix.browser }} --workers=50% --forbid-only --suite=addon-progress - name: Integration tests (addon-search) diff --git a/addons/addon-kitty-graphics/src/KittyGraphicsAddon.ts b/addons/addon-kitty-graphics/src/KittyGraphicsAddon.ts index 24d280f2..69d0c95d 100644 --- a/addons/addon-kitty-graphics/src/KittyGraphicsAddon.ts +++ b/addons/addon-kitty-graphics/src/KittyGraphicsAddon.ts @@ -266,6 +266,7 @@ export class KittyGraphicsAddon implements ITerminalAddon, IKittyGraphicsApi { /** * Decode an image and display it at the cursor position. + * @param image - The Kitty image to decode and display * @param columns - Optional: number of terminal columns to span * @param rows - Optional: number of terminal rows to span */