17 lines
262 B
Dart
17 lines
262 B
Dart
|
import 'package:graphql_parser/graphql_parser.dart';
|
||
|
import 'package:test/test.dart';
|
||
|
|
||
|
void main() {
|
||
|
test('heeds comments', () {
|
||
|
var tokens = scan('''
|
||
|
# Hello
|
||
|
{
|
||
|
# Goodbye
|
||
|
}
|
||
|
# Bonjour
|
||
|
''');
|
||
|
|
||
|
expect(tokens, hasLength(2));
|
||
|
});
|
||
|
}
|