fix(docgen): hide additional exports that throw off docgen.
Closes #707
This commit is contained in:
parent
4d56a1e1af
commit
a768f2e124
|
@ -1,7 +1,7 @@
|
||||||
library test_lib.test_lib;
|
library test_lib.test_lib;
|
||||||
|
|
||||||
import 'package:guinness/guinness_html.dart' as gns;
|
import 'package:guinness/guinness_html.dart' as gns;
|
||||||
export 'package:guinness/guinness_html.dart';
|
export 'package:guinness/guinness_html.dart' hide Expect, expect, NotExpect, beforeEach, it, iit;
|
||||||
import 'package:unittest/unittest.dart' hide expect;
|
import 'package:unittest/unittest.dart' hide expect;
|
||||||
import 'dart:mirrors';
|
import 'dart:mirrors';
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
|
@ -135,4 +135,4 @@ class _FixedObjToData {
|
||||||
return map;
|
return map;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue