create-kt-plugin
Version:
A template for creating a KT plugins for ExtendScript
18 lines (16 loc) • 399 B
text/typescript
import {
describe,
it,
expect,
runTests,
getSuites,
AE
} 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);
});
});