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 378fa9b commit fb12452Copy full SHA for fb12452
src/lib/tooltip/tooltip.spec.ts
@@ -7,7 +7,7 @@ import {MdTooltipModule} from './tooltip';
7
8
const initialTooltipMessage = 'initial tooltip message';
9
10
-fdescribe('MdTooltip', () => {
+describe('MdTooltip', () => {
11
let overlayContainerElement: HTMLElement;
12
13
@@ -58,7 +58,7 @@ fdescribe('MdTooltip', () => {
58
expect(tooltipDirective._isTooltipVisible()).toBe(false);
59
}));
60
61
- fit('should not follow through with hide if show is called after', fakeAsync(() => {
+ it('should not follow through with hide if show is called after', fakeAsync(() => {
62
tooltipDirective.show();
63
expect(tooltipDirective._isTooltipVisible()).toBe(true);
64
0 commit comments