test(compiler-cli): fix up import paths in test code (#40237)

These imports were unnecessrily deep, since the files are actually in the
same directory.

PR Close #40237
This commit is contained in:
Pete Bacon Darwin 2020-12-29 09:45:23 +00:00 committed by atscott
parent 8ebf538c04
commit 2224ab712d
1 changed files with 4 additions and 3 deletions

View File

@ -6,10 +6,11 @@
* found in the LICENSE file at https://angular.io/license
*/
import {FileSystem} from '../../../src/ngtsc/file_system';
import {checkExpectations} from '../test_helpers/check_expectations';
import {CompileResult, initMockTestFileSystem} from '../test_helpers/compile_test';
import {CompilationMode, ComplianceTest, getAllComplianceTests} from '../test_helpers/get_compliance_tests';
import {checkErrors, checkNoUnexpectedErrors} from './check_errors';
import {checkExpectations} from './check_expectations';
import {CompileResult, initMockTestFileSystem} from './compile_test';
import {CompilationMode, ComplianceTest, getAllComplianceTests} from './get_compliance_tests';
/**
* Set up jasmine specs for each of the compliance tests.