2025.3 RC, Grazie and required JBA login

In a plugin I updated the build from a 2025.3 eap to the 2025.3 rc build.

A tests is asserting that Grazie spellchecking is available in literals of a custom language.

With 2025.3, this message appears and the test fails because Grazie remains inactive:
[ 3156] WARN - #c.i.g.c.l.GrazieLoginManager - Need explicit activation dialog agreement, so skipping cloud login

Underlying, apparently, the JetBrains account service does not provide a token in unit test mode or is not logged in.

How can I make this setup work with 2025.3 rc?

As an update, this warning was misleading.

The real cause was that the Gradle inspection has been split into sub-inspections Grammar and Style.

Instead of enabling the Grazie inspection in my test, I need to enable the sub-inspections (only available in 2025.3): GrazieInspection.Grammar::class.java, GrazieInspection.Style::class.java

1 Like