4e69153e3e
git-subtree-dir: packages/graphql git-subtree-mainline:ac29392d7f
git-subtree-split:33e2f86ba7
16 lines
262 B
Dart
16 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));
|
|
});
|
|
}
|