platform/graphql_parser/test/comment_test.dart

17 lines
262 B
Dart
Raw Normal View History

2018-08-02 13:09:27 +00:00
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));
});
}