npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

kt-testing-suite-ae

v1.0.2

Published

Testing matchers for After Effects extensions

Readme

KT Testing Suite Banner

KT Testing Suite AE

Extension of the KT Testing Suite for Adobe After Effects, providing specific matchers for testing After Effects scripts in ExtendScript.

Overview

This extension adds custom matchers for After Effects, allowing you to write tests for layers, compositions, and other AE elements in an easy and expressive way. It is designed to work with KT Testing Suite Core and KT ExtendScript Builder.

Installation

To install the extension, use the following command:

npm install kt-testing-suite-ae

Writing Tests

Examples of writing tests using the suite with AE-specific matchers:

// src/tests/my-tests.test.ts
import { AE } from "kt-testing-suite-ae";
import { describe, it, expect } from "kt-testing-suite-core";

describe("Layer Tests", () => {
    it("should be a solid layer with correct opacity", () => {
        AE.expect(someLayer).toBeSolidLayer();
        AE.expect(someLayer).toMatchOpacity(100);
    });

    it("should have specific scale and position", () => {
        AE.expect(someLayer).toMatchScale([100, 100, 100]);
        AE.expect(someLayer).toMatchPosition([960, 540, 0]);
    });
});

Adobe Type Helpers

Use type helpers to avoid TypeScript errors when accessing Adobe-specific properties (see KT Testing Suite Core for details).

Build Tests

To transpile tests to ExtendScript, run:

npm run build-tests

Run Tests

To execute tests, use the ExtendScript Debugger, pointing to your tests entry file, usually src/tests/index.test.ts.

Example output:

Suite: Layer Tests
  Test: should be a solid layer with correct opacity
    ✅ Passed
  Test: should have specific scale and position
    ✅ Passed

Test Results:
Passed: 2
Failed: 0

Using Hooks

The suite supports hooks for setup and teardown (see KT Testing Suite Core for details).

Documentation

For detailed documentation on AE-specific matchers, see the docs/ folder:

Test Files

Test files are located in src/tests/:

Links

About

Base extension for testing Adobe After Effects scripts.

Resources

Read the full README on GitHub.