create-kt-plugin
Version:
A template for creating a KT plugins for ExtendScript
22 lines (19 loc) • 454 B
text/typescript
import {
describe,
it,
expect,
runTests,
beforeAll,
afterAll,
beforeEach,
afterEach,
} from 'kt-testing-suite-ts';
import { KT } from 'kt-core';
import { MyPlugin } from '../index';
describe('MyPlugin Tests', () => {
it('should be able to create a new instance of MyPlugin', () => {
const plugin = new MyPlugin();
expect(plugin).toBeInstanceOf(MyPlugin);
});
});
runTests();