pull/516/head
Abdullah Deshmukh 4 years ago committed by GitHub
parent 0eb1233cb4
commit 879029a98f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,12 +30,12 @@ void main() {
/// Specifically, send 'ADD' command to the handler in this case. /// Specifically, send 'ADD' command to the handler in this case.
await driver.requestData('ADD'); await driver.requestData('ADD');
// Check if the new item apppears in the list. // Check if the new item appears in the list.
await driver.waitFor(find.text('Item 30')); await driver.waitFor(find.text('Item 30'));
}); });
test('Verifying remove method', () async { test('Verifying remove method', () async {
/// Peform remove operation on the provider using the [DataHandler]. /// Perform remove operation on the provider using the [DataHandler].
await driver.requestData('REMOVE'); await driver.requestData('REMOVE');
// Verify if it disappears. // Verify if it disappears.

Loading…
Cancel
Save