blob: ba60807a69a6dc123d6ba61ffa121df2958af1e6 [file] [log] [blame]
>>>
void allTests() {
describe('inliner', () {
it('should inline `templateUrl` values', () async {
expect(view.namedParameters
.firstWhere((p) => p.name == 'templateUrl')
.value).toContain('template.html');
});
});
}
<<<
void allTests() {
describe('inliner', () {
it('should inline `templateUrl` values', () async {
expect(view.namedParameters
.firstWhere((p) => p.name == 'templateUrl')
.value)
.toContain('template.html');
});
});
}