We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dae6458 commit 1090827Copy full SHA for 1090827
tool/plugin/test/plugin_test.dart
@@ -176,18 +176,6 @@ void main() {
176
});
177
178
group('build', () {
179
- test('plugin.xml', () async {
180
- var runner = makeTestRunner();
181
- await runner.run(["-d../..", "make"]);
182
- await removeAll('../../build/classes');
183
- var file = File("../../build/classes/META-INF/plugin.xml");
184
- expect(file.existsSync(), isTrue);
185
- var content = file.readAsStringSync();
186
- expect(content.length, greaterThan(10000));
187
- var loc = content.indexOf('@');
188
- expect(loc, -1);
189
- });
190
-
191
test('only-version', () async {
192
ProductCommand command =
193
makeTestRunner().commands['make'] as ProductCommand;
0 commit comments