Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test hovers and problems peek widget #69204

Closed
2 tasks done
sandy081 opened this issue Feb 22, 2019 · 0 comments
Closed
2 tasks done

Test hovers and problems peek widget #69204

sandy081 opened this issue Feb 22, 2019 · 0 comments

Comments

@sandy081
Copy link
Member

sandy081 commented Feb 22, 2019

Ref #67076

Complexity: 3

Following improvements are done to the hovers

  • Made them wider so that the hover messages are shown nicely without wrapping.
  • Related information links in the problem hover are now shown without bullet points.
  • Added a status bar to the problem hover that contains Peek Problem and Quick Fixes action. Test them if they are working as expected.

Following improvements are done to Peek problems widget

  • You can now navigate problem peeks using the actions in the header of the peek.
  • Test that problem peek and hover are consistent.

You can use following code sample to generate errors

interface Foo {

	bar(): string;

}

interface Foo1 extends Foo {

	bar(): number;

}

class FooBar implements Foo {

	private _notDefinedVaar: string;

	bar(): string {
		return this._notDefinedVar;
	}

}
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants