Skip to content

Commit

Permalink
add skips, lint deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemac53 committed Dec 4, 2023
1 parent 22545da commit cd9eba9
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions integration_tests/regression/lib/issue_2142/import.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// ignore: prefer_relative_imports
import 'package:regression_tests/issue_2142/test.dart';

Thing newThing() => Thing();
3 changes: 3 additions & 0 deletions integration_tests/regression/lib/issue_2142/test.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
@Skip('https://github.com/dart-lang/test/issues/2142')
library;

import 'package:test/test.dart';
import 'import.dart';

Expand Down
4 changes: 3 additions & 1 deletion integration_tests/regression/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ name: regression_tests
publish_to: none
environment:
sdk: ^3.0.0
dev_dependencies:
dependencies:
test: any
dev_dependencies:
dart_flutter_team_lints: ^2.1.1
dependency_overrides:
test:
path: ../../pkgs/test
Expand Down
4 changes: 4 additions & 0 deletions integration_tests/regression/test/issue_2142_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
@Skip('https://github.com/dart-lang/test/issues/2142')
library;

import 'package:test/test.dart';

// ignore: avoid_relative_lib_imports
import '../lib/issue_2142/import.dart';

void main() {
Expand Down
1 change: 1 addition & 0 deletions integration_tests/wasm/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ publish_to: none
environment:
sdk: ^3.0.0
dev_dependencies:
dart_flutter_team_lints: ^2.1.1
test: any
dependency_overrides:
test:
Expand Down
2 changes: 2 additions & 0 deletions integration_tests/wasm/test/hello_world_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
@TestOn('wasm')
// This retry is a regression test for https://github.com/dart-lang/test/issues/2006
@Retry(2)
library;

import 'package:test/test.dart';

void main() {
Expand Down

0 comments on commit cd9eba9

Please sign in to comment.