build: enable TSLint on the packages folder
This commit is contained in:

committed by
Alex Rickabaugh

parent
e64b54b67b
commit
9479a106bb
@ -6,23 +6,21 @@
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {ParseError, ParseErrorLevel, ParseLocation, ParseSourceFile, ParseSourceSpan} from '../src/parse_util'
|
||||
import {ParseError, ParseErrorLevel, ParseLocation, ParseSourceFile, ParseSourceSpan} from '../src/parse_util';
|
||||
|
||||
export function main() {
|
||||
describe(
|
||||
'ParseError',
|
||||
() => {
|
||||
it('should reflect the level in the message', () => {
|
||||
const file = new ParseSourceFile(`foo\nbar\nfoo`, 'url');
|
||||
const start = new ParseLocation(file, 4, 1, 0);
|
||||
const end = new ParseLocation(file, 6, 1, 2);
|
||||
const span = new ParseSourceSpan(start, end);
|
||||
describe('ParseError', () => {
|
||||
it('should reflect the level in the message', () => {
|
||||
const file = new ParseSourceFile(`foo\nbar\nfoo`, 'url');
|
||||
const start = new ParseLocation(file, 4, 1, 0);
|
||||
const end = new ParseLocation(file, 6, 1, 2);
|
||||
const span = new ParseSourceSpan(start, end);
|
||||
|
||||
const fatal = new ParseError(span, 'fatal', ParseErrorLevel.ERROR);
|
||||
expect(fatal.toString()).toEqual('fatal ("foo\n[ERROR ->]bar\nfoo"): url@1:0');
|
||||
const fatal = new ParseError(span, 'fatal', ParseErrorLevel.ERROR);
|
||||
expect(fatal.toString()).toEqual('fatal ("foo\n[ERROR ->]bar\nfoo"): url@1:0');
|
||||
|
||||
const warning = new ParseError(span, 'warning', ParseErrorLevel.WARNING);
|
||||
expect(warning.toString()).toEqual('warning ("foo\n[WARNING ->]bar\nfoo"): url@1:0');
|
||||
});
|
||||
});
|
||||
const warning = new ParseError(span, 'warning', ParseErrorLevel.WARNING);
|
||||
expect(warning.toString()).toEqual('warning ("foo\n[WARNING ->]bar\nfoo"): url@1:0');
|
||||
});
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user