88// tslint:disable-next-line:no-implicit-dependencies
99import { tags } from '@angular-devkit/core' ;
1010import { transformJavascript } from '../helpers/transform-javascript' ;
11- import { getImportTslibTransformer , testImportTslib } from './import-tslib' ;
11+ import { getImportTslibTransformer } from './import-tslib' ;
1212
1313
1414const transform = ( content : string ) => transformJavascript (
@@ -27,7 +27,6 @@ describe('import-tslib', () => {
2727 import { __extends } from "tslib";
2828 ` ;
2929
30- expect ( testImportTslib ( input ) ) . toBeTruthy ( ) ;
3130 expect ( tags . oneLine `${ transform ( input ) } ` ) . toEqual ( tags . oneLine `${ output } ` ) ;
3231 } ) ;
3332
@@ -46,7 +45,6 @@ describe('import-tslib', () => {
4645 export default function appGlobal() { }
4746 ` ;
4847
49- expect ( testImportTslib ( input ) ) . toBeTruthy ( ) ;
5048 expect ( tags . oneLine `${ transform ( input ) } ` ) . toEqual ( tags . oneLine `${ output } ` ) ;
5149 } ) ;
5250
@@ -64,7 +62,6 @@ describe('import-tslib', () => {
6462 import { __decorate } from "tslib";
6563 ` ;
6664
67- expect ( testImportTslib ( input ) ) . toBeTruthy ( ) ;
6865 expect ( tags . oneLine `${ transform ( input ) } ` ) . toEqual ( tags . oneLine `${ output } ` ) ;
6966 } ) ;
7067
@@ -89,7 +86,6 @@ describe('import-tslib', () => {
8986 import { __decorate as __decorate$2 } from "tslib";
9087 ` ;
9188
92- expect ( testImportTslib ( input ) ) . toBeTruthy ( ) ;
9389 expect ( tags . oneLine `${ transform ( input ) } ` ) . toEqual ( tags . oneLine `${ output } ` ) ;
9490 } ) ;
9591
@@ -118,7 +114,6 @@ describe('import-tslib', () => {
118114 exports.meaning = 42;
119115 ` ;
120116
121- expect ( testImportTslib ( input ) ) . toBeTruthy ( ) ;
122117 expect ( tags . oneLine `${ transform ( input ) } ` ) . toEqual ( tags . oneLine `${ output } ` ) ;
123118 } ) ;
124119
@@ -132,7 +127,6 @@ describe('import-tslib', () => {
132127 import { __metadata } from "tslib";
133128 ` ;
134129
135- expect ( testImportTslib ( input ) ) . toBeTruthy ( ) ;
136130 expect ( tags . oneLine `${ transform ( input ) } ` ) . toEqual ( tags . oneLine `${ output } ` ) ;
137131 } ) ;
138132
@@ -147,7 +141,6 @@ describe('import-tslib', () => {
147141 import { __param } from "tslib";
148142 ` ;
149143
150- expect ( testImportTslib ( input ) ) . toBeTruthy ( ) ;
151144 expect ( tags . oneLine `${ transform ( input ) } ` ) . toEqual ( tags . oneLine `${ output } ` ) ;
152145 } ) ;
153146
0 commit comments