fix(docgen): hide additional exports that throw off docgen.

Closes #707
This commit is contained in:
Rado Kirov 2015-02-18 17:41:32 -08:00 committed by Misko Hevery
parent 4d56a1e1af
commit a768f2e124
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
library test_lib.test_lib;
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 'dart:mirrors';
import 'dart:async';
@ -135,4 +135,4 @@ class _FixedObjToData {
return map;
});
}
}
}