Skip to content

Commit

Permalink
Merge branch 'master' into feat/openfoodfacts#517
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurtanuki authored Jul 25, 2022
2 parents d4a27a8 + 7c5a10a commit 64d96c5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ dependencies:

dev_dependencies:
test: any
lints: ^1.0.1
lints: ^2.0.0
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
json_annotation: ^4.5.0
json_annotation: ^4.6.0
http: ^0.13.4
path: ^1.8.2
image: ^3.1.3
image: ^3.2.0
meta: ^1.8.0

dev_dependencies:
analyzer: ">=4.0.0 <5.0.0"
build_runner: ^2.1.11
json_serializable: ^6.2.0
build_runner: ^2.2.0
json_serializable: ^6.3.1
lints: ^2.0.0
test: ^1.21.1
test: ^1.21.4
coverage: ^1.3.2
6 changes: 5 additions & 1 deletion test/api_getProduct_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1766,7 +1766,11 @@ void main() {
expect(result.product?.packaging, 'de:In einer Plastikflasche');
expect(result.product?.packagingTags, ['de:in-einer-plastikflasche']);
expect(result.product?.quantity, '5.5 Liter');
});
},
timeout: Timeout(
// some tests can be slow here
Duration(seconds: 90),
));

test('get new product fields', () async {
final ProductQueryConfiguration configuration = ProductQueryConfiguration(
Expand Down

0 comments on commit 64d96c5

Please sign in to comment.