preparations for isolated TS modules

This commit is contained in:
Patrik Oldsberg
2020-05-28 18:36:41 +02:00
parent 6c3b65da9f
commit 6a6a901a2b
9 changed files with 12 additions and 44 deletions
+4 -1
View File
@@ -14,8 +14,11 @@
* limitations under the License.
*/
import { PluginEnvironment } from './types';
describe('test', () => {
it('unbreaks the test runner', () => {
expect(true).toBeTruthy();
const unbreaker = {} as PluginEnvironment;
expect(unbreaker).toBeTruthy();
});
});