File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ def use_query(
112
112
113
113
Args:
114
114
query: A callable that returns a Django `Model` or `QuerySet`.
115
- options: A `QueryOptions` object that can modify how the query is excuted.
115
+ options: An optional `QueryOptions` object that can modify how the query is excuted.
116
116
*args: Positional arguments to pass into `query`.
117
117
118
118
Keyword Args:
Original file line number Diff line number Diff line change @@ -91,6 +91,9 @@ def test_authorized_user(self):
91
91
)
92
92
self .page .wait_for_selector ("#authorized-user" )
93
93
94
+ def test_relational_query (self ):
95
+ self .page .locator ("#relational-query[data-success=true]" ).wait_for ()
96
+
94
97
def test_use_query_and_mutation (self ):
95
98
todo_input = self .page .wait_for_selector ("#todo-input" )
96
99
You can’t perform that action at this time.
0 commit comments