| Index: pkg/analysis_server/test/context_manager_test.dart
|
| diff --git a/pkg/analysis_server/test/context_manager_test.dart b/pkg/analysis_server/test/context_manager_test.dart
|
| index 4f51e8696cc44eac28d62ec5cac53b26613f165a..ee33a76e9cef5cafcec42419d51d95e1931be38c 100644
|
| --- a/pkg/analysis_server/test/context_manager_test.dart
|
| +++ b/pkg/analysis_server/test/context_manager_test.dart
|
| @@ -2088,6 +2088,19 @@ include: package:boo/other_options.yaml
|
| // No error means success.
|
| }
|
|
|
| + test_deleteRoot_hasAnalysisOptions() async {
|
| + newFile([projPath, optionsFileName], '');
|
| +
|
| + // Add the root.
|
| + manager.setRoots(<String>[projPath], <String>[], <String, String>{});
|
| + await pumpEventQueue();
|
| +
|
| + // Remove the root, with the analysis options file.
|
| + // No exceptions.
|
| + resourceProvider.deleteFolder(projPath);
|
| + await pumpEventQueue();
|
| + }
|
| +
|
| test_embedder_options() async {
|
| // Create files.
|
| String libPath = newFolder([projPath, ContextManagerTest.LIB_NAME]);
|
|
|