mirror of
https://github.com/foss42/apidash.git
synced 2025-05-29 04:50:36 +08:00
18 lines
360 B
Dart
18 lines
360 B
Dart
import 'package:test/test.dart';
|
|
import 'package:apidash/utils/file_utils.dart';
|
|
|
|
void main() {
|
|
group(
|
|
"Testing x function",
|
|
() {
|
|
/*test('Test case 2', () {
|
|
expect(showButtonLabelsInViewCodePane(350), false);
|
|
});
|
|
|
|
test('Test case 3', () {
|
|
expect(showButtonLabelsInViewCodePane(450), true);
|
|
});*/
|
|
},
|
|
);
|
|
}
|