test(ngcc): remove unused `FileSystem` variable (#36027)

PR Close #36027
This commit is contained in:
Pete Bacon Darwin 2020-03-09 16:28:08 +00:00 committed by Andrew Kushnir
parent 8c2d8428d5
commit c852ec9283
1 changed files with 1 additions and 3 deletions

View File

@ -7,18 +7,16 @@
*/
import {encode} from 'sourcemap-codec';
import {FileSystem, absoluteFrom, getFileSystem} from '../../../src/ngtsc/file_system';
import {absoluteFrom} from '../../../src/ngtsc/file_system';
import {runInEachFileSystem} from '../../../src/ngtsc/file_system/testing';
import {RawSourceMap} from '../../src/sourcemaps/raw_source_map';
import {SourceFile, computeLineLengths, extractOriginalSegments, parseMappings} from '../../src/sourcemaps/source_file';
runInEachFileSystem(() => {
describe('SourceFile and utilities', () => {
let fs: FileSystem;
let _: typeof absoluteFrom;
beforeEach(() => {
fs = getFileSystem();
_ = absoluteFrom;
});