diff --git a/test/scopes/scopes/scope_test.dart b/test/scopes/scopes/scope_test.dart index 84ff409..bdb4c74 100644 --- a/test/scopes/scopes/scope_test.dart +++ b/test/scopes/scopes/scope_test.dart @@ -6,11 +6,13 @@ import '../../toolbox/mock_configurable.dart'; void main() { - test('`scope` is `ScopeGet`', () { + test('`scope` is `ScopeGet`, `ScopePush` and `Disposable`', () { final scope = _MockScope(); expect(scope, isA()); + expect(scope, isA()); + expect(scope, isA()); }); test('`Scope.root` return sync scope if it only has sync configuration', () {