mbolotov / intellij-cypress

IntelliJ-Cypress plugin: https://plugins.jetbrains.com/plugin/13819-intellij-cypress Pro version: https://plugins.jetbrains.com/plugin/13987-cypress-support-pro
MIT License
35 stars 5 forks source link

Plugin fails to evaluate the configuration with Cypress 11 #110

Open arneevertsson opened 1 year ago

arneevertsson commented 1 year ago

Describe the bug Running tests by clicking the gutter icon tries to run it as a Node.js run config, which fails.

Versions:

/usr/local/bin/node ....cy.js
...cy.js:3
describe("...", function ()
^

ReferenceError: describe is not defined
    at Object.<anonymous> (...cy.js:3:1)
    at Module._compile (node:internal/modules/cjs/loader:1119:14)
    at Module._extensions..js (node:internal/modules/cjs/loader:1173:10)
    at Module.load (node:internal/modules/cjs/loader:997:32)
    at Module._load (node:internal/modules/cjs/loader:838:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
    at node:internal/main/run_main_module:18:47

Node.js v18.8.0

Process finished with exit code 1
mbolotov commented 1 year ago

Please make sure your cypress config selects this test for execution. Can you run it successfully from the command line? Also, the plugin adds a cypress icon for every spec file that is selected by the cypress configuration: image Do you see it for your spec file?

arneevertsson commented 1 year ago

What does it mean "cypress config selects this test"? My cypress.config.js contains nothing about selecting tests.

I can run the test from the command line, both with the Cypress ui and without it.

The gutter icon "cy" is not visible.

mbolotov commented 1 year ago

Cypress can run only tests that are matched by specPattern property of the cypress configuration (or testFiles in Cypress version < 10). If you don't specify this value explicitly, Cypress will use a default one.

Could you share you cypress configuration file or the whole project?

Also, it would be nice if you collect the debug logs.

arneevertsson commented 1 year ago

Could I send the IntelliJ log through a private channel?

mbolotov commented 1 year ago

yep, you can send an email to mikhail.bolotov at Gmail or use this slack channel https://join.slack.com/t/intellij-cypress/shared_invite/zt-g5lcy9xc-F3qy_g8O~qbZvKjD2m0EjQ

andreikondratev commented 1 year ago

Does not seem to pick up *.cy.ts files in IntelliJ IDEA 2022.3 (Ultimate Edition).

mbolotov commented 1 year ago

while I'm still searching for a way to evaluate a configuration with Cypress 11, you can use this bundle and disable config parsing: Cypress Support Pro-3.5.1.zip

When disabled, a run configuration can be created from a gutter as usual, though some other features that depend on the data from config may not be available in this mode.

This mode is automatically enabled when Cypress 11 is detected: image

bajzik commented 1 year ago

Hey guys, i have same problem with PHP Storm 2022.3 and Cypress 11. Is there workaround without Pro plugin?

mbolotov commented 1 year ago

@bajzik what do you mean by workaround without Pro plugin? The 3.5.1 version should work with Cypress 11 (but with some limitation due to lack of the configuration data)

bajzik commented 1 year ago

3.5.1 is version of Pro plugin if I'm right, so also workaround above my comment is probably for Pro version. So I'm asking if there is workaround for free version.

mbolotov commented 1 year ago

What's the problem with the free version? It doesn't use the configuration data so I expect there should be no problem regarding Cypress 11

bajzik commented 1 year ago

I dont have possibility to run .cy.ts test file nor any described test, or test case at all

image

mbolotov commented 1 year ago

So it was working okay with Cypress 10 and not working with Cypress 11?

bajzik commented 1 year ago

I better say with 9. I was updating Cypress from 9.5.* version to 11.

mbolotov commented 1 year ago

What's the name of your cypress configuration file? It might be that the free version support only the default file names for a configuration file

bajzik commented 1 year ago

cypress.config.ts

mbolotov commented 1 year ago

could you share your project? I've just checked my sample project and it works okay with the free version and Cypress 11.1.0

bajzik commented 1 year ago

Project is using yarn workspaces, where vue is one of package/ws and tests are another package/ws. So cypress.config.ts is in this test package where also test files (cy.ts) are stored.

mbolotov commented 1 year ago

did the configuration file change the location when you migrated from 9 to 11 version?

bajzik commented 1 year ago

Nope, files are still the same. I think that we renamed test.ts co cy.ts but it was while ago. Is there any example for run configuration? Or it's not necessary if we're not able to run in from cy.ts file

mbolotov commented 1 year ago

you can create a run configuration 'manually' via this menu button: image and fill in all the required fields

mbolotov commented 1 year ago

anyway, I cannot reproduce the problem without a sample project

list4c commented 1 year ago

Hi there! https://github.com/bahmutov/fastify-example-tests https://github.com/bahmutov/fastify-example These are training materials from Gleb Bahmutov. Open source, there is a sample app and some spec files. I guess just using cy.visit('/') should be enough, as there is a baseUrl defined already.

Note: Exercises are in Cypress 9, but I upgraded to latest (12).

I tried to run a spec file after upgrading to Cypress 12 and it shows me a similar error:

it('shows the fruit returned from the test', () => {
^

ReferenceError: it is not defined
    at Object.<anonymous> (/home/mariusz/cypress-learner/network-requests-cypress-course/fastify-example-tests/cypress/e2e/spec03.cy.js:3:1)
    at Module._compile (node:internal/modules/cjs/loader:1159:14)
    at Module._extensions..js (node:internal/modules/cjs/loader:1213:10)
    at Module.load (node:internal/modules/cjs/loader:1037:32)
    at Module._load (node:internal/modules/cjs/loader:878:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
    at node:internal/main/run_main_module:23:47

Node.js v18.12.1

Process finished with exit code 1

UPDATE: using specPattern parameter in cypress.config.ts file did not solve the problem

scmppmcs commented 1 year ago

I have the same issue with phpstorm where I cannot run individual tests from within the test files.

here's a minimal reproducible example where I have this happening: https://github.com/scmppmcs/mre-cypress-phpstorm

my issue when accessing any test icon dropdown: image

This is on an alma linux VM. This problem did not appear on other distro vms. Phpstorm is the snap version. One difference I saw with the other VM is that node is installed with snap but this one is not.

When I create a test configuration to run a single test within a test file then run it, I get this in logs with the relevant debug log setting (#me.mbolotov.cypress:all):

2022-12-16 09:55:48,869 [   7271] SEVERE - #c.i.u.c.QueueProcessor - PhpStorm 2022.3  Build #PS-223.7571.212
2022-12-16 09:55:48,870 [   7272] SEVERE - #c.i.u.c.QueueProcessor - JDK: 17.0.5; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o.
2022-12-16 09:55:48,870 [   7272] SEVERE - #c.i.u.c.QueueProcessor - OS: Linux
2022-12-16 09:55:49,575 [   7977]   INFO - #c.j.r.f.FollowMeManager - Register new user 0:'admin' with ClientId=ClientId(value=Host)
2022-12-16 09:55:52,167 [  10569]   INFO - #c.i.o.w.i.GlobalMenuLinux - created instance of GlobalMenuLinux for xid=0x2000219
2022-12-16 09:55:52,287 [  10689]   INFO - #c.i.w.i.i.WorkspaceModelImpl - Load workspace model from cache in 98 ms
2022-12-16 09:55:52,301 [  10703]   INFO - #c.i.w.i.i.WorkspaceModelImpl - -------------------------------------------------------
2022-12-16 09:55:52,301 [  10703]   INFO - #c.i.w.i.i.WorkspaceModelImpl - Updating project model silently. Version before update 0.
2022-12-16 09:55:52,302 [  10704]   INFO - #c.i.w.i.i.WorkspaceModelImpl - Update description: Add module mapping
2022-12-16 09:55:52,302 [  10704]   INFO - #c.i.w.i.i.WorkspaceModelImpl - Update: 0 ms, To snapshot: 0 ms
2022-12-16 09:55:52,303 [  10705]   INFO - #c.i.w.i.i.WorkspaceModelImpl - -------------------------------------------------------
2022-12-16 09:55:52,323 [  10725]   WARN - #c.i.e.RunManager - Must be not called before project components initialized
2022-12-16 09:55:52,333 [  10735]   INFO - #c.i.o.v.i.p.NewMappings - VCS Root: [Git] - [/home/admin/Documents/test-cypress]
2022-12-16 09:55:52,335 [  10737]   INFO - #c.i.o.w.i.s.w.StatusBarWidgetsManager - Factory is not registered as `com.intellij.statusBarWidgetFactory` extension: com.intellij.openapi.vcs.changes.committed.IncomingChangesIndicatorFactory
2022-12-16 09:55:52,339 [  10741]   INFO - #c.j.r.p.c.t.i.DistributedTestHost - Host address=localhost/127.0.0.1
2022-12-16 09:55:52,343 [  10745]   INFO - #c.i.p.c.ProjectCodeStyleSettingsManager - Initialized from default code style settings.
2022-12-16 09:55:52,369 [  10771]   INFO - PerformancePlugin - Performance Plugin is in silent mode
2022-12-16 09:55:52,384 [  10786]   INFO - #c.i.i.n.e.NewToolbarRootPaneExtension - Show old main toolbar: false; show old navigation bar: true
2022-12-16 09:55:52,384 [  10786]   INFO - #c.i.i.n.e.NewToolbarRootPaneExtension - Show new main toolbar: false
2022-12-16 09:55:52,385 [  10787]   INFO - #c.i.o.w.i.s.w.StatusBarWidgetsManager - Factory is not registered as `com.intellij.statusBarWidgetFactory` extension: git4idea.ui.branch.GitBranchWidget$Factory
2022-12-16 09:55:52,562 [  10964]   INFO - #c.j.r.f.FollowMeManager - Register new user 0:'admin' with ClientId=ClientId(value=Host)
2022-12-16 09:55:52,844 [  11246]   WARN - #c.i.o.w.i.ToolWindowImpl - ToolWindow icons should be 13x13. Please fix ToolWindow (ID:  Robo tasks) or icon RasterizedImageDataLoader(classLoader=PluginClassLoader(plugin=PluginDescriptor(name=PHP, id=com.jetbrains.php, descriptorPath=plugin.xml, path=/var/lib/snapd/snap/phpstorm/307/plugins/php-impl, version=223.7571.212, package=null, isBundled=true), packagePrefix=null, instanceId=131, state=active), path=icons/php-icon.svg)
2022-12-16 09:55:52,912 [  11314]   INFO - #c.i.u.i.UnindexedFilesScanner - Started scanning for indexing of test-cypress. Reason: On project open
2022-12-16 09:55:52,922 [  11324]   INFO - #c.i.u.i.UnindexedFilesScanner - Performing delayed pushing properties tasks for test-cypress took 10ms; general responsiveness: ok; EDT responsiveness: ok
2022-12-16 09:55:52,949 [  11351]   INFO - #c.j.p.t.PhpLocalTerminalCustomizer - Do not initialise terminal for null or remote sdk: null
2022-12-16 09:55:53,257 [  11659]   INFO - #c.i.o.e.s.p.m.ExternalProjectsDataStorage - Load external projects data in 0 millis (read time: 0)
2022-12-16 09:55:53,346 [  11748]   INFO - #c.i.i.s.p.i.SharedIndexChunkConfigurationImpl - Chunk bundled-js-predefined-ffdd448c697d-9b322a0dfcec-JavaScript-PS-223.7571.212 is registered for project 'test-cypress: matching: (fb=37, stub=86), incompatible: (fb=0, stub=0), unknown: (fb=9, stub=9), 
2022-12-16 09:55:53,578 [  11980]   INFO - #c.i.u.i.UnindexedFilesScanner - Scanning of test-cypress uses 11 scanning threads
2022-12-16 09:55:53,666 [  12068]   INFO - #c.i.d.u.SqlDialects - SQL dialects initialized in 32 ms
2022-12-16 09:55:53,742 [  12144]   INFO - #c.i.i.s.p.i.SharedIndexChunkConfigurationImpl - Chunk bundled-php-predefined-a9dfff28de4e-ee06eac2f0d2-com.jetbrains.php-PS-223.7571.212 is registered for project 'test-cypress: matching: (fb=88, stub=107), incompatible: (fb=0, stub=0), unknown: (fb=9, stub=9), 
2022-12-16 09:55:53,743 [  12145]   INFO - #c.i.i.s.p.i.BundledSharedIndexPostStartupActivity - Attached 2 pre-built shared indexes: bundled-js-predefined-ffdd448c697d-9b322a0dfcec-JavaScript-PS-223.7571.212, bundled-php-predefined-a9dfff28de4e-ee06eac2f0d2-com.jetbrains.php-PS-223.7571.212
2022-12-16 09:55:53,900 [  12302]   INFO - #c.i.w.i.i.WorkspaceModelImpl - Updating project model. New version: 2. Whole update took 18 ms. Desc: Node: update library entities
2022-12-16 09:55:53,959 [  12361]   INFO - #c.i.i.s.IdeStartupScripts - 0 startup script(s) found
2022-12-16 09:55:54,091 [  12493]   INFO - #c.i.d.PerformanceWatcherImpl - Post-startup activities under progress took 849ms; general responsiveness: ok; EDT responsiveness: ok
2022-12-16 09:55:54,515 [  12917]   INFO - #c.i.u.i.UnindexedFilesScanner - Scanning completed for test-cypress. Number of scanned files: 4539; Number of files for indexing: 0 took 1593ms; general responsiveness: ok; EDT responsiveness: ok
2022-12-16 09:55:54,516 [  12918]   INFO - #c.i.u.i.UnindexedFilesScanner - 93b2f50a: marking roots for initial VFS refresh
2022-12-16 09:55:54,520 [  12922]   INFO - #c.i.u.i.UnindexedFilesScanner - 93b2f50a: starting initial VFS refresh
2022-12-16 09:55:54,528 [  12930]   INFO - #c.i.u.i.UnindexedFilesScanner - Finished for test-cypress. No files to index with loading content.
2022-12-16 09:55:54,611 [  13013]   WARN - #c.i.u.x.Binding - no accessors for com.intellij.lang.annotation.HighlightSeverity
2022-12-16 09:55:55,097 [  13499]   INFO - #c.i.u.i.UnindexedFilesScanner - 93b2f50a: initial VFS refresh finished 575 ms
2022-12-16 09:55:58,569 [  16971]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6066 ms since showing to preload popup menu 'File' at 'MainMenu(preload-bgt)' in 131 ms
2022-12-16 09:55:58,591 [  16993]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6094 ms since showing to preload popup menu 'View' at 'MainMenu(preload-bgt)' in 154 ms
2022-12-16 09:55:58,599 [  17001]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6103 ms since showing to preload popup menu 'Edit' at 'MainMenu(preload-bgt)' in 163 ms
2022-12-16 09:55:58,639 [  17041]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6142 ms since showing to preload popup menu 'Navigate' at 'MainMenu(preload-bgt)' in 201 ms
2022-12-16 09:55:58,659 [  17061]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6163 ms since showing to preload popup menu 'Code' at 'MainMenu(preload-bgt)' in 222 ms
2022-12-16 09:55:58,709 [  17111]   INFO - #c.i.u.t.DateFormatUtil - cannot load system formats (JNA=true), resorting to JRE for en_US
2022-12-16 09:55:58,724 [  17126]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6227 ms since showing to preload popup menu 'Run' at 'MainMenu(preload-bgt)' in 286 ms
2022-12-16 09:55:58,726 [  17128]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6229 ms since showing to preload popup menu 'Refactor' at 'MainMenu(preload-bgt)' in 288 ms
2022-12-16 09:55:58,734 [  17136]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6238 ms since showing to preload popup menu 'Window' at 'MainMenu(preload-bgt)' in 296 ms
2022-12-16 09:55:58,794 [  17196]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6297 ms since showing to preload popup menu 'Tools' at 'MainMenu(preload-bgt)' in 356 ms
2022-12-16 09:55:58,814 [  17216]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6317 ms since showing to preload popup menu 'Help' at 'MainMenu(preload-bgt)' in 376 ms
2022-12-16 09:55:58,954 [  17356]   INFO - #c.i.o.a.i.PopupMenuPreloader - 6024 ms since showing to preload popup menu 'Project View Popup Menu' at 'ProjectViewPopup(preload-bgt)' in 512 ms
2022-12-16 09:55:59,049 [  17451]   INFO - #c.i.o.a.i.PopupMenuPreloader - 5901 ms since showing to preload popup menu 'Editor Popup Menu' at 'EditorPopup(preload-bgt)' in 606 ms
2022-12-16 09:55:59,052 [  17454]   INFO - #c.i.o.a.i.PopupMenuPreloader - 5847 ms since showing to preload popup menu 'Editor Popup Menu' at 'EditorPopup(preload-bgt)' in 609 ms
2022-12-16 09:55:59,143 [  17545]   INFO - #c.j.r.p.c.CodeWithMeCleanup - running activity to cleanup old thin clients... Root path is '/home/admin/.cache/JetBrains'. JvmStartTimeMs=1671180941308
2022-12-16 09:55:59,145 [  17547]   INFO - #c.j.r.p.c.CodeWithMeCleanup - found 0 Code With Me client system folders to check
2022-12-16 09:55:59,146 [  17548]   INFO - #c.j.r.p.c.CodeWithMeCleanup - found 0 Code With Me client config folders to check
2022-12-16 09:55:59,148 [  17550]   INFO - #c.j.r.p.c.CodeWithMeCleanup - keep only [] major versions
2022-12-16 09:55:59,181 [  17583]   INFO - #c.i.w.i.i.WorkspaceModelImpl - Updating project model. New version: 3. Whole update took 5 ms. Desc: Apply JPS storage (iml files)
2022-12-16 09:55:59,183 [  17585]   INFO - #c.i.w.i.i.j.s.DelayedProjectSynchronizer$Companion - Workspace model loaded from cache. Syncing real project state into workspace model in 73 ms. Thread[DefaultDispatcher-worker-44,5,main]
2022-12-16 09:55:59,494 [  17896]   INFO - #c.i.j.n.p.n.PackageVersionRangeMatcher - Matching 6 done in 53 ms
2022-12-16 09:55:59,958 [  18360]   INFO - #c.i.v.l.d.VcsLogData - Username not configured for root file:///home/admin/Documents/test-cypress
2022-12-16 09:56:00,052 [  18454]   INFO - #c.i.v.l.d.i.VcsLogPersistentIndex - Indexing 1 commits in test-cypress
2022-12-16 09:56:00,101 [  18503]   INFO - #c.i.v.l.d.i.VcsLogPersistentIndex - 44ms for indexing 1 new commits out of 1 in test-cypress
2022-12-16 09:56:00,111 [  18513]   INFO - #c.i.v.l.d.i.VcsLogPersistentIndex - Indexing 1 commits in test-cypress
2022-12-16 09:56:00,112 [  18514]   INFO - #c.i.v.l.d.i.IndexDiagnosticRunner - Running index diagnostic for [file:///home/admin/Documents/test-cypress]
2022-12-16 09:56:00,114 [  18516]   INFO - #c.i.v.l.d.i.VcsLogPersistentIndex - 3ms for indexing 0 new commits out of 1 in test-cypress
2022-12-16 09:56:21,038 [  39440]   INFO - #c.i.c.ComponentStoreImpl - Saving appFileTypeManager took 12 ms
2022-12-16 09:56:21,194 [  39596]   INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=test-cypress, containerState=COMPONENT_CREATED, componentStore=/home/admin/Documents/test-cypress)PHPCSFixerOptionsConfiguration took 14 ms, RunManager took 46 ms
2022-12-16 09:57:28,646 [ 107048]   INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=test-cypress, containerState=COMPONENT_CREATED, componentStore=/home/admin/Documents/test-cypress)RunManager took 13 ms
2022-12-16 10:00:54,744 [ 313146]   INFO - #c.i.i.b.BookmarkManager - no state loaded for old bookmarks
2022-12-16 10:00:54,765 [ 313167]   INFO - #c.i.i.f.FavoritesManager - no state loaded for old favorites
2022-12-16 10:02:46,005 [ 424407] SEVERE - #me.mbolotov.cypress.run.CypressRunState - Failed to run Cypress configuration
com.intellij.execution.ExecutionException: Unable to add a .only keyword to run a single test
    at me.mbolotov.cypress.run.CypressRunState.onlyfiOrDie(CypressRunState.kt:210)
    at me.mbolotov.cypress.run.CypressRunState.configureCommandLine(CypressRunState.kt:186)
    at me.mbolotov.cypress.run.CypressRunState.execute(CypressRunState.kt:61)
    at com.intellij.execution.runners.DefaultRunProgramRunner$execute$1.invoke(DefaultRunProgramRunner.kt:29)
    at com.intellij.execution.runners.DefaultRunProgramRunner$execute$1.invoke(DefaultRunProgramRunner.kt:18)
    at com.intellij.execution.impl.ExecutionManagerImpl$startRunProfile$1.invoke(ExecutionManagerImpl.kt:173)
    at com.intellij.execution.impl.ExecutionManagerImpl$startRunProfile$1.invoke(ExecutionManagerImpl.kt:171)
    at com.intellij.execution.impl.ExecutionManagerImpl.doStartRunProfile$lambda-3(ExecutionManagerImpl.kt:234)
    at com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(TransactionGuardImpl.java:209)
    at com.intellij.openapi.application.TransactionGuardImpl.access$100(TransactionGuardImpl.java:21)
    at com.intellij.openapi.application.TransactionGuardImpl$1.run(TransactionGuardImpl.java:191)
    at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:813)
    at com.intellij.openapi.application.impl.ApplicationImpl$3.run(ApplicationImpl.java:429)
    at com.intellij.openapi.application.impl.FlushQueue.doRun(FlushQueue.java:74)
    at com.intellij.openapi.application.impl.FlushQueue.runNextEvent(FlushQueue.java:114)
    at com.intellij.openapi.application.impl.FlushQueue.flushNow(FlushQueue.java:36)
    at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:318)
    at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:779)
    at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:730)
    at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:724)
    at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
    at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:749)
    at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:909)
    at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:756)
    at com.intellij.ide.IdeEventQueue.lambda$dispatchEvent$5(IdeEventQueue.java:437)
    at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:774)
    at com.intellij.ide.IdeEventQueue.lambda$dispatchEvent$6(IdeEventQueue.java:436)
    at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:105)
    at com.intellij.ide.IdeEventQueue.performActivity(IdeEventQueue.java:615)
    at com.intellij.ide.IdeEventQueue.lambda$dispatchEvent$7(IdeEventQueue.java:434)
    at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:813)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:480)
    at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207)
    at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128)
    at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117)
    at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113)
    at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105)
    at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:92)
2022-12-16 10:02:46,007 [ 424409] SEVERE - #me.mbolotov.cypress.run.CypressRunState - PhpStorm 2022.3  Build #PS-223.7571.212
2022-12-16 10:02:46,007 [ 424409] SEVERE - #me.mbolotov.cypress.run.CypressRunState - JDK: 17.0.5; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o.
2022-12-16 10:02:46,007 [ 424409] SEVERE - #me.mbolotov.cypress.run.CypressRunState - OS: Linux
2022-12-16 10:02:46,007 [ 424409] SEVERE - #me.mbolotov.cypress.run.CypressRunState - Plugin to blame: Cypress Support version: 1.4.3
2022-12-16 10:02:46,021 [ 424423]   INFO - #c.i.e.r.ExecutionUtil - Error running 'specific test':<br>Unable to add a .only keyword to run a single test
com.intellij.execution.ExecutionException: Unable to add a .only keyword to run a single test
    at me.mbolotov.cypress.run.CypressRunState.onlyfiOrDie(CypressRunState.kt:210)
    at me.mbolotov.cypress.run.CypressRunState.configureCommandLine(CypressRunState.kt:186)
    at me.mbolotov.cypress.run.CypressRunState.execute(CypressRunState.kt:61)
    at com.intellij.execution.runners.DefaultRunProgramRunner$execute$1.invoke(DefaultRunProgramRunner.kt:29)
    at com.intellij.execution.runners.DefaultRunProgramRunner$execute$1.invoke(DefaultRunProgramRunner.kt:18)
    at com.intellij.execution.impl.ExecutionManagerImpl$startRunProfile$1.invoke(ExecutionManagerImpl.kt:173)
    at com.intellij.execution.impl.ExecutionManagerImpl$startRunProfile$1.invoke(ExecutionManagerImpl.kt:171)
    at com.intellij.execution.impl.ExecutionManagerImpl.doStartRunProfile$lambda-3(ExecutionManagerImpl.kt:234)
    at com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(TransactionGuardImpl.java:209)
    at com.intellij.openapi.application.TransactionGuardImpl.access$100(TransactionGuardImpl.java:21)
    at com.intellij.openapi.application.TransactionGuardImpl$1.run(TransactionGuardImpl.java:191)
    at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:813)
    at com.intellij.openapi.application.impl.ApplicationImpl$3.run(ApplicationImpl.java:429)
    at com.intellij.openapi.application.impl.FlushQueue.doRun(FlushQueue.java:74)
    at com.intellij.openapi.application.impl.FlushQueue.runNextEvent(FlushQueue.java:114)
    at com.intellij.openapi.application.impl.FlushQueue.flushNow(FlushQueue.java:36)
    at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:318)
    at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:779)
    at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:730)
    at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:724)
    at java.base/java.security.AccessController.doPrivileged(AccessController.java:399)
    at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:749)
    at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:909)
    at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:756)
    at com.intellij.ide.IdeEventQueue.lambda$dispatchEvent$5(IdeEventQueue.java:437)
    at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:774)
    at com.intellij.ide.IdeEventQueue.lambda$dispatchEvent$6(IdeEventQueue.java:436)
    at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:105)
    at com.intellij.ide.IdeEventQueue.performActivity(IdeEventQueue.java:615)
    at com.intellij.ide.IdeEventQueue.lambda$dispatchEvent$7(IdeEventQueue.java:434)
    at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:813)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:480)
    at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207)
    at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128)
    at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117)
    at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113)
    at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105)
    at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:92)

If you have any suggestions on additional steps to debug this, please tell!

mbolotov commented 1 year ago

hi @scmppmcs! Could you try this bundle Cypress Support-1.5.1-DEBUG.zip and post the new log? I've added some additional logging there.

mbolotov commented 1 year ago

hi @list4c! Are you able to run the tests from the command line? I was unable to reproduce the problem from fastify-example-tests by either way.

scmppmcs commented 1 year ago

hi @scmppmcs! Could you try this bundle Cypress Support-1.5.1-DEBUG.zip and post the new log? I've added some additional logging there.

So I installed the zip and now it just works like I expect (I can run single tests from the gutter). Thank you so much! Here is the log when I run a single test:

idea.log ``` 2023-01-05 15:00:22,235 [ 544344] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=test-cypress, containerState=COMPONENT_CREATED, componentStore=/home/admin/Documents/test-cypress)MessDetectorOptionsConfiguration took 75 ms, RunManager took 22 ms 2023-01-05 15:00:22,726 [ 544835] INFO - #c.j.r.f.FollowMeManager - Unregister user 0:'admin' with ClientId=ClientId(value=Host) 2023-01-05 15:00:22,798 [ 544907] WARN - #c.i.l.j.s.JSLanguageServiceQueue - VueTypeScript: Pool did not terminate in 50 milliseconds 2023-01-05 15:00:23,712 [ 545821] INFO - #c.j.r.f.FollowMeManager - Register new user 0:'admin' with ClientId=ClientId(value=Host) 2023-01-05 15:00:25,231 [ 547340] INFO - c.j.r.f.u.RdCoroutineScope - RdCoroutineHost has been reset 2023-01-05 15:00:25,232 [ 547341] INFO - c.j.r.f.u.RdCoroutineScope - RdCoroutineHost disposed 2023-01-05 15:00:25,244 [ 547353] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Watcher terminated with exit code 0 2023-01-05 15:00:25,247 [ 547356] INFO - #o.j.i.BuiltInServer - web server stopped 2023-01-05 15:00:25,260 [ 547369] INFO - #c.j.r.f.FollowMeManager - Unregister user 0:'admin' with ClientId=ClientId(value=Host) 2023-01-05 15:00:25,260 [ 547369] INFO - #c.j.r.f.FollowMeManager - Unregister user 0:'admin' with ClientId=ClientId(value=Host) 2023-01-05 15:00:25,264 [ 547373] INFO - #c.i.u.i.FileBasedIndexImpl - START INDEX SHUTDOWN 2023-01-05 15:00:25,384 [ 547493] INFO - #c.i.p.s.StubIndexImpl - StubIndexExtension-s were unloaded 2023-01-05 15:00:25,384 [ 547493] INFO - #c.i.p.s.SerializationManagerImpl - Start shutting down /home/admin/.cache/JetBrains/PhpStorm2022.3/index/rep.names 2023-01-05 15:00:25,385 [ 547494] INFO - #c.i.p.s.SerializationManagerImpl - Finished shutting down /home/admin/.cache/JetBrains/PhpStorm2022.3/index/rep.names 2023-01-05 15:00:25,458 [ 547567] INFO - #c.i.u.i.FileBasedIndexImpl - END INDEX SHUTDOWN 2023-01-05 15:00:25,471 [ 547580] INFO - #c.i.o.v.n.p.PersistentFSImpl - VFS dispose started 2023-01-05 15:00:25,482 [ 547591] INFO - #c.i.o.v.n.p.PersistentFSImpl - VFS dispose completed 2023-01-05 15:00:25,482 [ 547591] INFO - #c.i.o.f.i.FileTypeDetectionService - 77 auto-detected files. Detection took 458 ms 2023-01-05 15:00:29,182 [ 2] INFO - #c.i.i.AppStarter - ------------------------------------------------------ IDE STARTED ------------------------------------------------------ 2023-01-05 15:00:29,208 [ 28] INFO - #c.i.i.p.PluginManager - Using cached broken plugins file 2023-01-05 15:00:29,467 [ 287] INFO - #c.i.i.AppStarter - JNA library (64-bit) loaded in 255 ms 2023-01-05 15:00:29,491 [ 311] INFO - #c.i.i.AppStarter - IDE: PhpStorm (build #PS-223.7571.212, 01 Dec 2022 16:29) 2023-01-05 15:00:29,491 [ 311] INFO - #c.i.i.AppStarter - OS: Linux (4.18.0-425.3.1.el8.x86_64, amd64) 2023-01-05 15:00:29,492 [ 312] INFO - #c.i.i.AppStarter - JRE: 17.0.5+1-b653.14 (JetBrains s.r.o.) 2023-01-05 15:00:29,493 [ 313] INFO - #c.i.i.AppStarter - JVM: 17.0.5+1-b653.14 (OpenJDK 64-Bit Server VM) 2023-01-05 15:00:29,507 [ 327] INFO - #c.i.i.AppStarter - PID: 301111 2023-01-05 15:00:29,507 [ 327] INFO - #c.i.i.AppStarter - desktop: GNOME 2023-01-05 15:00:29,522 [ 342] INFO - #c.i.i.p.PluginManager - Plugin PluginDescriptor(name=PHP, id=com.jetbrains.php, descriptorPath=plugin.xml, path=/var/lib/snapd/snap/phpstorm/307/plugins/php-impl, version=223.7571.212, package=null, isBundled=true) misses optional descriptor php-shared-indexes.xml 2023-01-05 15:00:29,549 [ 369] INFO - #c.i.i.AppStarter - JVM options: [-Xms128m, -Xmx750m, -XX:ReservedCodeCacheSize=512m, -XX:+UseG1GC, -XX:SoftRefLRUPolicyMSPerMB=50, -XX:CICompilerCount=2, -XX:+HeapDumpOnOutOfMemoryError, -XX:-OmitStackTraceInFastThrow, -XX:+IgnoreUnrecognizedVMOptions, -XX:CompileCommand=exclude,com/intellij/openapi/vfs/impl/FilePartNodeRoot,trieDescend, -ea, -Dsun.io.useCanonCaches=false, -Dsun.java2d.metal=true, -Djbr.catch.SIGABRT=true, -Djdk.http.auth.tunneling.disabledSchemes="", -Djdk.attach.allowAttachSelf=true, -Djdk.module.illegalAccess.silent=true, -Dkotlinx.coroutines.debug=off, -Dsun.tools.attach.tmp.only=true, -Xmx2048m, -XX:ErrorFile=/home/admin/java_error_in_phpstorm_%p.log, -XX:HeapDumpPath=/home/admin/java_error_in_phpstorm_.hprof, -Djb.vmOptionsFile=/home/admin/.config/JetBrains/PhpStorm2022.3/phpstorm64.vmoptions, -Djava.system.class.loader=com.intellij.util.lang.PathClassLoader, -Didea.vendor.name=JetBrains, -Didea.paths.selector=PhpStorm2022.3, -Djna.boot.library.path=/var/lib/snapd/snap/phpstorm/307/lib/jna/amd64, -Dpty4j.preferred.native.folder=/var/lib/snapd/snap/phpstorm/307/lib/pty4j, -Djna.nosys=true, -Djna.nounpack=true, -Didea.platform.prefix=PhpStorm, -Dsplash=true, --add-opens=java.base/java.io=ALL-UNNAMED, --add-opens=java.base/java.lang=ALL-UNNAMED, --add-opens=java.base/java.lang.ref=ALL-UNNAMED, --add-opens=java.base/java.lang.reflect=ALL-UNNAMED, --add-opens=java.base/java.net=ALL-UNNAMED, --add-opens=java.base/java.nio=ALL-UNNAMED, --add-opens=java.base/java.nio.charset=ALL-UNNAMED, --add-opens=java.base/java.text=ALL-UNNAMED, --add-opens=java.base/java.time=ALL-UNNAMED, --add-opens=java.base/java.util=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED, --add-opens=java.base/jdk.internal.vm=ALL-UNNAMED, --add-opens=java.base/sun.nio.ch=ALL-UNNAMED, --add-opens=java.base/sun.nio.fs=ALL-UNNAMED, --add-opens=java.base/sun.security.ssl=ALL-UNNAMED, --add-opens=java.base/sun.security.util=ALL-UNNAMED, --add-opens=java.desktop/com.sun.java.swing.plaf.gtk=ALL-UNNAMED, --add-opens=java.desktop/java.awt=ALL-UNNAMED, --add-opens=java.desktop/java.awt.dnd.peer=ALL-UNNAMED, --add-opens=java.desktop/java.awt.event=ALL-UNNAMED, --add-opens=java.desktop/java.awt.image=ALL-UNNAMED, --add-opens=java.desktop/java.awt.peer=ALL-UNNAMED, --add-opens=java.desktop/java.awt.font=ALL-UNNAMED, --add-opens=java.desktop/javax.swing=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.plaf.basic=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.text.html=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.X11=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.datatransfer=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.image=ALL-UNNAMED, --add-opens=java.desktop/sun.awt=ALL-UNNAMED, --add-opens=java.desktop/sun.font=ALL-UNNAMED, --add-opens=java.desktop/sun.java2d=ALL-UNNAMED, --add-opens=java.desktop/sun.swing=ALL-UNNAMED, --add-opens=jdk.attach/sun.tools.attach=ALL-UNNAMED, --add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED, --add-opens=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED, --add-opens=jdk.jdi/com.sun.tools.jdi=ALL-UNNAMED] 2023-01-05 15:00:29,550 [ 370] INFO - #c.i.i.AppStarter - args: 2023-01-05 15:00:29,551 [ 371] INFO - #c.i.i.AppStarter - library path: /usr/java/packages/lib:/usr/lib64:/lib64:/lib:/usr/lib 2023-01-05 15:00:29,551 [ 371] INFO - #c.i.i.AppStarter - boot library path: /var/lib/snapd/snap/phpstorm/307/jbr/lib 2023-01-05 15:00:29,573 [ 393] INFO - #c.i.i.AppStarter - locale=en_US JNU=UTF-8 file.encoding=UTF-8 idea.config.path=/home/admin/.config/JetBrains/PhpStorm2022.3 idea.system.path=/home/admin/.cache/JetBrains/PhpStorm2022.3 idea.plugins.path=/home/admin/.local/share/JetBrains/PhpStorm2022.3 idea.log.path=/home/admin/.cache/JetBrains/PhpStorm2022.3/log 2023-01-05 15:00:29,578 [ 398] INFO - #c.i.i.AppStarter - CPU cores: 12; ForkJoinPool.commonPool: java.util.concurrent.ForkJoinPool@16c4db03[Running, parallelism = 11, size = 0, active = 0, running = 0, steals = 0, tasks = 0, submissions = 0]; factory: com.intellij.concurrency.IdeaForkJoinWorkerThreadFactory@42c5b527 2023-01-05 15:00:29,612 [ 432] INFO - #c.i.i.p.PluginManager - Module intellij.diagram.properties is not enabled because dependency com.intellij.properties is not available Module intellij.diagram.java is not enabled because dependency com.intellij.java is not available Module intellij.sh.python is not enabled because dependency com.intellij.modules.python is not available Module intellij.space.java is not enabled because dependency com.intellij.java is not available Module intellij.space.kotlin.scripting is not enabled because dependency org.jetbrains.kotlin is not available Module intellij.restClient/microservicesUI is not enabled because dependency com.intellij.microservices.ui is not available Module intellij.clouds.docker.java is not enabled because dependency com.intellij.java is not available Module intellij.grazie.properties is not enabled because dependency com.intellij.properties is not available Module intellij.grazie.java is not enabled because dependency com.intellij.java is not available Module intellij.javascript.debugger.javaee is not enabled because dependency com.intellij.javaee is not available Module intellij.javascript.debugger.nashorn is not enabled because dependency com.intellij.java is not available Module intellij.javascript.devkit is not enabled because dependency intellij.devkit.core is not available Module intellij.swagger/java is not enabled because dependency com.intellij.java is not available Module intellij.swagger/endpoints is not enabled because dependency com.intellij.microservices.ui is not available Module intellij.space.kotlin is not enabled because dependency intellij.space.kotlin.scripting is not available 2023-01-05 15:00:29,636 [ 456] INFO - #c.i.i.p.PluginManager - Loaded bundled plugins: Configuration Script (223.7571.212), Codeception Framework (223.7571.212), Projector Libraries for Code With Me and Remote Development (223.7571.212), Markdown (223.7571.212), IntelliLang (223.7571.212), WebP Support (223.7571.212), Shared Project Indexes (223.7571.212), Images (223.7571.212), Vite (223.7571.212), GitHub (223.7571.212), Ini (223.7571.212), Prettier (223.7571.212), PHP (223.7571.212), Performance Testing (Dynamic Plugins) (223.7571.212), Terminal for Gateway (223.7571.212), Subversion (223.7571.212), Diagrams (223.7571.212), Psalm Support (223.7571.212), Copyright (223.7571.212), Mercurial (223.7571.212), Shell Script (223.7571.212), Task Management (223.7571.212), Joomla! (223.7571.212), Grazie (223.7571.212), Blade (223.7571.212), Behat Support (223.7571.212), PHP Docker (223.7571.212), PHP Markdown Integration (223.7571.212), Vagrant (223.7571.212), Remote Development Server (223.7571.212), Apache config (.htaccess) (223.7571.212), PHP Grazie Integration (223.7571.212), PHP Remote Interpreter (223.7571.212), Time Tracking (223.7571.212), PHPStan Support (223.7571.212), Railscasts Color Scheme (223.7571.212), Cucumber.js (223.7571.212), CSS (223.7571.212), Next.js Support (223.7571.212), Remote Development Gateway (223.7571.212), Terminal (223.7571.212), Space (223.7571.212), Monokai Color Scheme (223.7571.212), TextMate Bundles (223.7571.212), Refactor-X (223.7571.212), Gherkin (223.7571.212), All Hallow's Eve Color Scheme (223.7571.212), EditorConfig (223.7571.212), Twilight Color Scheme (223.7571.212), PHP Architecture (223.7571.212), Data Editor Support (223.7571.212), JavaScript Debugger (223.7571.212), SSH Remote Run (223.7571.212), Blackboard Color Scheme (223.7571.212), Hunspell (223.7571.212), WarmNeon Color Scheme (223.7571.212), Qodana (223.7571.212), Command Line Tool (223.7571.212), Shared Indexes (223.7571.212), IDEA CORE (223.7571.212), PhpStorm Workshop (223.7571.212), Makefile Language (223.7571.212), JavaScript and TypeScript (223.7571.212), Polymer & Web Components (223.7571.212), PhpStorm Solarized Color Scheme (223.7571.212), VibrantInk Color Scheme (223.7571.212), Cobalt Color Scheme (223.7571.212), Eclipse Keymap (223.7571.212), Visual Studio Keymap (223.7571.212), Drupal (223.7571.212), Perforce Helix Core (223.7571.212), Code With Me (223.7571.212), Node.js Remote Interpreter (223.7571.212), HTML Tools (223.7571.212), DQL (223.7571.212), PHPT Support (223.7571.212), WordPress (223.7571.212), TSLint (223.7571.212), GNU GetText files support (*.po) (223.7571.212), YAML (223.7571.212), Data Editor Support Core (223.7571.212), Rector Support (223.7571.212), File Watchers (223.7571.212), Settings Sync (223.7571.212), Styled Components & Styled JSX (223.7571.212), Phing (223.7571.212), JavaScript Intention Power Pack (223.7571.212), XPathView + XSLT (223.7571.212), VSCode Keymap (223.7571.212), com.intellij.dev (223.7571.212), Database Tools and SQL (223.7571.212), FTP/SFTP/WebDAV Connectivity (223.7571.212), PHPSpec BDD Framework (223.7571.212), Tailwind CSS (223.7571.212), Angular and AngularJS (223.7571.212), IDE Settings Sync (223.7571.212), HTTP Client (223.7571.212), ReStructuredText (223.7571.212), Karma (223.7571.212), NetBeans Keymap (223.7571.212), Emoji Picker (223.7571.212), Less (223.7571.212), Docker (223.7571.212), Node.js (223.7571.212), Vue.js (223.7571.212), OpenAPI Specifications (223.7571.212), Git (223.7571.212), Sass (223.7571.212), Webpack (223.7571.212), Machine Learning Code Completion (223.7571.212), Performance Testing (223.7571.212), Machine Learning in Search Everywhere (223.7571.212), Twig (223.7571.212) 2023-01-05 15:00:29,636 [ 456] INFO - #c.i.i.p.PluginManager - Loaded custom plugins: .env files support (2022.3), Cypress Support (1.5.1-DEBUG) 2023-01-05 15:00:30,327 [ 1147] INFO - #c.i.a.o.PathMacrosImpl - Loaded path macros: {} 2023-01-05 15:00:30,363 [ 1183] INFO - #c.i.i.p.ExpiredPluginsState - Plugins to skip: [] 2023-01-05 15:00:30,374 [ 1194] INFO - #c.i.o.v.n.p.PersistentFSConnector - VFS uses strict names enumerator 2023-01-05 15:00:30,403 [ 1223] INFO - #c.i.o.v.n.p.PersistentFSConnector - VFS uses regular attributes storage 2023-01-05 15:00:30,444 [ 1264] INFO - #o.j.i.BuiltInServerManager - built-in server started, port 63342 2023-01-05 15:00:30,474 [ 1294] INFO - #c.i.o.v.n.p.FSRecords - using REGULAR storage for VFS records 2023-01-05 15:00:30,543 [ 1363] INFO - #c.i.u.n.s.CertificateManager - Default SSL context initialized 2023-01-05 15:00:30,587 [ 1407] INFO - #c.i.o.v.n.p.PersistentFSConnector - 49 ms to load free records and inverted name index 2023-01-05 15:00:30,945 [ 1765] INFO - #c.i.d.DebugLogManager - Set ALL for the following categories: #me.mbolotov.cypress, me.mbolotov.cypress 2023-01-05 15:00:30,989 [ 1809] INFO - #c.i.o.u.i.UpdateCheckerService - channel: release 2023-01-05 15:00:31,171 [ 1991] INFO - #c.i.o.a.Experiments - Experimental features enabled for user: wsl.p9.support, wsl.prefer.p9.support, wsl.p9.show.roots.in.file.chooser, wsl.execute.with.wsl.exe, linux.native.menu, recent.and.edited.files.together, show.create.new.element.in.popup, search.everywhere.mixed.results, new.project.wizard, editor.reader.mode, new.large.text.file.viewer, terminal.shell.command.handling, reuse.target.paths.for.rsync 2023-01-05 15:00:31,175 [ 1995] INFO - #c.i.i.s.p.i.SharedIndexMainZipStorage - Shared Indexes Storage is opened and empty 2023-01-05 15:00:31,180 [ 2000] INFO - #c.i.o.w.i.GlobalMenuLinux - Start glib main loop in thread: GlobalMenuLinux loop 2023-01-05 15:00:31,184 [ 2004] INFO - #c.i.o.w.i.GlobalMenuLinux - Closed dbus-service 'com.canonical.AppMenu.Registrar' 2023-01-05 15:00:31,620 [ 2440] INFO - #c.i.u.i.FileBasedIndexImpl - Indices to be built:FilenameIndex(v = 258) 2023-01-05 15:00:31,632 [ 2452] INFO - c.i.u.i.FileBasedIndexDataInitialization - Index data initialization done: 665 ms. Initialized indexes: [FilenameIndex, filetypes, TodoIndex, RelaxSymbolIndex, XmlNamespaces, SchemaTypeInheritance, FrameworkDetectionIndex, DomFileIndex, XmlTagNames, json.file.root.values, html5.custom.attributes.index, fileIncludes, editorconfig.index.name, yaml.keys.name, HtmlTagIdIndex, http.request.execution.environment, Trigram.Index, http.request.headers.values.index, CompassFunctionsIndex, http.request.name.index, http.request.completion.host, IdIndex, XsltSymbolIndex, docker.compose.services, js.package.index, HashFragmentIndex, js.test.names, HtmlScriptSrcIndex, js.string.literal.words.index, TypeScriptExternalPathCandidates, OpenapiSpecificationContentIndexer, WebComponentsIndex, sql.routine.index, sql.types.count.index, php.class.name, VueNoScriptFilesIndex, php.class.attributes.name, php.constant.name, php.variable.name, php.function.name, js.implicit.elements.index, Stubs, php.method.name, php.class.alias.fqn, php.array.access.offsets, php.invoke.calls.offsets, php.doc.type.aliases.index, php.interface.fqn, php.serialize.function.calls.offsets, php.putenv.arguments, php.doctag.user.name, php.class.fqn, php.field.names.accessed.by.the.constructor, php.generic.template.index, php.used.parameters.array.keys, php.namespace.inheritance, php.unit.covers, php.class.alias.name, php.class.to.class.alias, php.expected.function.return.values, php.class.alias.to.class, php.trait.usage, php.constants.default.expected.arguments, php.expected.function.arguments, php.meta.type.inference.mapping, php.exit.point.function.index, php.function.parameters.used.as.regexp, php.constants.default.array.shapes, php.global.assignment.index, php.inferred.meta.pattern.index, js.custom.single.entry.index, php.function.always.re, php.functions.with.not.catched.dynamic.passed.calls, php.parameters.default.value.matchers, php.fields.default.value.matchers, php.not.used.parameters, css.template.selectors, php.array.shapes.entries, php.generator.operands.type.index, php.unit.data.providers, wordpress.hook.invocations, php.func.get.arg.usage.index, wordpress.hook.callbacks, CssIndex, wp.table.prefix.index, php.file.constants.default.value.matchers, psalm.no.return, php.max.language.level, psalm.constant.reference.wildcard, drupal.hook.name, ru.adelf.idea.php.dotenv.keyValues, rector.config.files, angularjs.app.index, angularjs.ui.router.views.index, angularjs.template.cache]. 2023-01-05 15:00:31,855 [ 2675] INFO - c.i.p.s.StubIndexImpl$StubIndexInitialization - Index data initialization done: 222 ms. Initialized stub indexes: {markdown.header, vue.id.index, php.namespace.shortName, Less.mixins, ts.external.module.index, js.namespace.index, js.amd.modules, js.nonglobal.symbol.index, angularjs.delimiter.index, JS.global.qualified.elements, js.gcl.modules, Less.variables, JS.base.types.index, js.used.remote.modules, php.classConstant.shortName, Css.attr, angular2.metadata.function.index, js.symbol.index2, angularjs.directives.index, vue.components.index, dom.namespaceKey, JS.subclass.stub.index, angular2.source.module.index, js.imported.bindings.index, vue.options.index, js.lazy.packages, angularjs.ui.router.generic.states.index, angular2.metadata.module.index, php.trait.shortName, php.inheritors, Css.id, angularjs.directives.doc.index, angularjs.generic.modules.index, es6.assignment.index, angularjs.templateUrl.index, js.export.default.react.component.index, vue.url.index, php.function.custom.index.map, angularjs.ui.router.states.index, markdown.header.anchor, Scss.placeholder.selector, sql.names, vuex.store.index, vue.mixin.binding.index, Scss.mixin, angular2.templateUrl.index, angularjs.filter.index, angularjs.module.index, php.method.never.return.type, Scss.function, js.qualified.shortName, php.method.shortName, php.constant.shortName, JS.class.super, php.constant.case.sensitive.shortName, amd.baseUrl.index, php.use.referenceName, angular2.metadata.className.index, angular2.ivy.module.index, ts.local.classes, amd.requirePaths.index, angularjs.controller.index, angular2.metadata.pipe.index, angular2.ivy.pipe.index, js.doc.modules, php.method.custom.index.map, php.attribute.fqn, Scss.variable, angular2.metadata.node.index, php.variable.shortName, vue.composition.app.index, angular2.source.pipe.index, sql.table.shortName, Css.custom.property, php.interface.shortName, Css.class, vue.global.filters.index, ts.embedded.content.index, redis.dml.shortName, js.exported.index, JS.framework.markers.index, angular2.metadata.directive.index, angular2.source.directive.index, angular2.ivy.directive.index, js.generics.index, sql.column.name, JS.class.implements, php.field.shortName, makefile.target.index, dom.elementClass, Css.ampersand.selector, es6.exported.index, vue.global.directives.index, php.function.shortName, js.local.namespace.members.index, js.class.index2, js.typedef.index2, js.element.qualifiedName, js.symbol.qualified.names.index, angularjs.symbol.index, js.global.symbol.index, php.class.shortName, Css.custom.mixin, php.function.never.return.type, vue.extends.binding.index, php.trait.fqn, ini.property.key}. 2023-01-05 15:00:31,877 [ 2697] INFO - #c.i.i.p.DisabledPluginsState - Plugins to enable: [com.jetbrains.codeWithMe] 2023-01-05 15:00:31,883 [ 2703] INFO - #c.i.i.p.DynamicPlugins - Plugins to load: [] 2023-01-05 15:00:32,670 [ 3490] INFO - #c.j.r.f.FollowMeManager - Register new user 0:'admin' with ClientId=ClientId(value=Host) 2023-01-05 15:00:33,482 [ 4302] INFO - #c.i.o.w.i.GlobalMenuLinux - created instance of GlobalMenuLinux for xid=0x20000b5 2023-01-05 15:00:33,851 [ 4671] INFO - #c.i.w.i.i.WorkspaceModelImpl - Load workspace model from cache in 327 ms 2023-01-05 15:00:33,909 [ 4729] INFO - #c.i.w.i.i.WorkspaceModelImpl - ------------------------------------------------------- 2023-01-05 15:00:33,910 [ 4730] INFO - #c.i.w.i.i.WorkspaceModelImpl - Updating project model silently. Version before update 0. 2023-01-05 15:00:33,910 [ 4730] INFO - #c.i.w.i.i.WorkspaceModelImpl - Update description: Add module mapping 2023-01-05 15:00:33,918 [ 4738] INFO - #c.i.w.i.i.WorkspaceModelImpl - Update: 7 ms, To snapshot: 0 ms 2023-01-05 15:00:33,918 [ 4738] INFO - #c.i.w.i.i.WorkspaceModelImpl - ------------------------------------------------------- 2023-01-05 15:00:33,935 [ 4755] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Starting file watcher: /var/lib/snapd/snap/phpstorm/307/bin/fsnotifier 2023-01-05 15:00:33,941 [ 4761] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Native file watcher is operational. 2023-01-05 15:00:33,997 [ 4817] WARN - #c.i.e.RunManager - Must be not called before project components initialized 2023-01-05 15:00:34,008 [ 4828] INFO - #c.j.r.p.c.t.i.DistributedTestHost - Host address=localhost/127.0.0.1 2023-01-05 15:00:34,035 [ 4855] INFO - STDOUT - Info | RdCoroutineScope | 31:DefaultDispatcher-worker-19 | RdCoroutineHost overridden 2023-01-05 15:00:34,043 [ 4863] INFO - #c.i.o.v.i.p.NewMappings - VCS Root: [Git] - [/home/admin/Documents/test-cypress] 2023-01-05 15:00:34,091 [ 4911] INFO - #c.i.r.OsRegistryConfigProvider - Looking for 'enabled' value in [/etc/xdg/JetBrains/portForwarding/enabled, /etc/xdg/JetBrains/portForwarding/config.json, /home/admin/.config/JetBrains/portForwarding/enabled, /home/admin/.config/JetBrains/portForwarding/config.json] 2023-01-05 15:00:34,092 [ 4912] INFO - #c.i.r.OsRegistryConfigProvider - OS provided value for 'enabled' is not found 2023-01-05 15:00:34,133 [ 4953] INFO - #c.i.o.w.i.s.w.StatusBarWidgetsManager - Factory is not registered as `com.intellij.statusBarWidgetFactory` extension: com.intellij.openapi.vcs.changes.committed.IncomingChangesIndicatorFactory 2023-01-05 15:00:34,145 [ 4965] INFO - PerformancePlugin - Performance Plugin is in silent mode 2023-01-05 15:00:34,162 [ 4982] INFO - #c.i.i.n.e.NewToolbarRootPaneExtension - Show old main toolbar: false; show old navigation bar: true 2023-01-05 15:00:34,162 [ 4982] INFO - #c.i.i.n.e.NewToolbarRootPaneExtension - Show new main toolbar: false 2023-01-05 15:00:34,163 [ 4983] INFO - #c.i.o.w.i.s.w.StatusBarWidgetsManager - Factory is not registered as `com.intellij.statusBarWidgetFactory` extension: git4idea.ui.branch.GitBranchWidget$Factory 2023-01-05 15:00:34,187 [ 5007] INFO - #c.i.p.c.ProjectCodeStyleSettingsManager - Initialized from default code style settings. 2023-01-05 15:00:34,330 [ 5150] INFO - #c.i.o.a.i.NonBlockingReadActionImpl - OTel monitoring for NonBlockingReadAction is enabled 2023-01-05 15:00:34,450 [ 5270] INFO - #c.j.r.f.FollowMeManager - Register new user 0:'admin' with ClientId=ClientId(value=Host) 2023-01-05 15:00:34,680 [ 5500] INFO - #c.i.u.i.UnindexedFilesScanner - Started scanning for indexing of test-cypress. Reason: On project open 2023-01-05 15:00:34,770 [ 5590] INFO - #c.i.u.i.UnindexedFilesScanner - Performing delayed pushing properties tasks for test-cypress took 84ms; general responsiveness: ok; EDT responsiveness: ok 2023-01-05 15:00:35,041 [ 5861] WARN - #c.i.o.w.i.ToolWindowImpl - ToolWindow icons should be 13x13. Please fix ToolWindow (ID: Robo tasks) or icon RasterizedImageDataLoader(classLoader=PluginClassLoader(plugin=PluginDescriptor(name=PHP, id=com.jetbrains.php, descriptorPath=plugin.xml, path=/var/lib/snapd/snap/phpstorm/307/plugins/php-impl, version=223.7571.212, package=null, isBundled=true), packagePrefix=null, instanceId=131, state=active), path=icons/php-icon.svg) 2023-01-05 15:00:35,953 [ 6773] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 51 packages (0 with '@web-types' prefix) in 200ms (https://registry.npmjs.org/-/v1/search?&text=%22%40web-types%22&from=0&size=51) 2023-01-05 15:00:36,027 [ 6847] INFO - #c.i.o.e.s.p.m.ExternalProjectsDataStorage - Load external projects data in 1 millis (read time: 1) 2023-01-05 15:00:36,047 [ 6867] INFO - #git4idea.commands.GitHandler - [.] git version 2023-01-05 15:00:36,061 [ 6881] INFO - #git4idea.commands.GitHandler - git version 2.31.1 2023-01-05 15:00:36,072 [ 6892] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 51 packages (0 with '@web-types' prefix) in 119ms (https://registry.npmjs.org/-/v1/search?&text=%22%40web-types%22&from=51&size=51) 2023-01-05 15:00:36,077 [ 6897] INFO - #git4idea.config.GitExecutableManager - Git version for /usr/bin/git: 2.31.1.0 (UNIX) 2023-01-05 15:00:36,262 [ 7082] INFO - #c.i.i.s.p.i.SharedIndexChunkConfigurationImpl - Chunk bundled-js-predefined-ffdd448c697d-9b322a0dfcec-JavaScript-PS-223.7571.212 is registered for project 'test-cypress: matching: (fb=37, stub=86), incompatible: (fb=0, stub=0), unknown: (fb=9, stub=9), 2023-01-05 15:00:36,272 [ 7092] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 51 packages (1 with '@web-types' prefix) in 199ms (https://registry.npmjs.org/-/v1/search?&text=%22%40web-types%22&from=102&size=51) 2023-01-05 15:00:36,396 [ 7216] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 50 packages (0 with '@web-types' prefix) in 122ms (https://registry.npmjs.org/-/v1/search?&text=%22%40web-types%22&from=153&size=50) 2023-01-05 15:00:36,517 [ 7337] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 50 packages (6 with '@web-types' prefix) in 119ms (https://registry.npmjs.org/-/v1/search?&text=%22%40web-types%22&from=203&size=50) 2023-01-05 15:00:36,714 [ 7534] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 36 packages (3 with '@web-types' prefix) in 197ms (https://registry.npmjs.org/-/v1/search?&text=%22%40web-types%22&from=253&size=44) 2023-01-05 15:00:36,724 [ 7544] INFO - #c.i.u.i.UnindexedFilesScanner - Scanning of test-cypress uses 11 scanning threads 2023-01-05 15:00:36,807 [ 7627] INFO - #c.i.i.s.p.i.SharedIndexChunkConfigurationImpl - Chunk bundled-php-predefined-a9dfff28de4e-ee06eac2f0d2-com.jetbrains.php-PS-223.7571.212 is registered for project 'test-cypress: matching: (fb=88, stub=107), incompatible: (fb=0, stub=0), unknown: (fb=9, stub=9), 2023-01-05 15:00:36,808 [ 7628] INFO - #c.i.i.s.p.i.BundledSharedIndexPostStartupActivity - Attached 2 pre-built shared indexes: bundled-js-predefined-ffdd448c697d-9b322a0dfcec-JavaScript-PS-223.7571.212, bundled-php-predefined-a9dfff28de4e-ee06eac2f0d2-com.jetbrains.php-PS-223.7571.212 2023-01-05 15:00:36,848 [ 7668] INFO - #c.i.d.u.SqlDialects - SQL dialects initialized in 54 ms 2023-01-05 15:00:36,969 [ 7789] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 1 dist-tags, 31 versions for @web-types/vue in 220ms 2023-01-05 15:00:37,081 [ 7901] INFO - #c.i.i.s.IdeStartupScripts - 0 startup script(s) found 2023-01-05 15:00:37,094 [ 7914] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 1 dist-tags, 8 versions for @web-types/quasar in 357ms 2023-01-05 15:00:37,113 [ 7933] INFO - #c.i.w.i.i.WorkspaceModelImpl - Updating project model. New version: 2. Whole update took 46 ms. Desc: Node: update library entities 2023-01-05 15:00:37,171 [ 7991] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 1 dist-tags, 1 versions for @web-types/vue-no-ssr in 201ms 2023-01-05 15:00:37,234 [ 8054] INFO - #c.i.d.PerformanceWatcherImpl - Post-startup activities under progress took 1349ms; general responsiveness: ok; EDT responsiveness: ok 2023-01-05 15:00:37,349 [ 8169] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 1 dist-tags, 30 versions for @web-types/bootstrap-vue in 254ms 2023-01-05 15:00:37,390 [ 8210] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 1 dist-tags, 44 versions for @web-types/quasar-framework in 219ms 2023-01-05 15:00:37,549 [ 8369] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 1 dist-tags, 3 versions for @web-types/at-nuxt-vue-app in 199ms 2023-01-05 15:00:37,621 [ 8441] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 1 dist-tags, 115 versions for @web-types/vuetify in 230ms 2023-01-05 15:00:37,767 [ 8587] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 1 dist-tags, 1 versions for @web-types/vue-client-only in 217ms 2023-01-05 15:00:37,856 [ 8676] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 1 dist-tags, 2 versions for @web-types/vue-router in 235ms 2023-01-05 15:00:37,974 [ 8794] INFO - #c.i.j.n.n.r.NpmRegistryServiceImpl - Found 1 dist-tags, 3 versions for @web-types/lit in 206ms 2023-01-05 15:00:38,007 [ 8827] INFO - #c.i.u.i.UnindexedFilesScanner - Scanning completed for test-cypress. Number of scanned files: 4539; Number of files for indexing: 0 took 3237ms; general responsiveness: ok; EDT responsiveness: 1/3 sluggish 2023-01-05 15:00:38,008 [ 8828] INFO - #c.i.u.i.UnindexedFilesScanner - 93b2f50a: marking roots for initial VFS refresh 2023-01-05 15:00:38,010 [ 8830] INFO - #c.i.u.i.UnindexedFilesScanner - 93b2f50a: starting initial VFS refresh 2023-01-05 15:00:38,016 [ 8836] INFO - #c.i.u.i.UnindexedFilesScanner - Finished for test-cypress. No files to index with loading content. 2023-01-05 15:00:38,133 [ 8953] WARN - #c.i.u.x.Binding - no accessors for com.intellij.lang.annotation.HighlightSeverity 2023-01-05 15:00:38,264 [ 9084] INFO - #c.i.w.c.WebSymbolsContext - Reloading project test-cypress on Web Symbols framework context change (none -> vue) in file /home/admin/Documents/test-cypress/cypress/e2e/admin/chat.cy.ts. 2023-01-05 15:00:38,296 [ 9116] INFO - #c.i.u.i.UnindexedFilesScanner - 93b2f50a: initial VFS refresh finished 284 ms 2023-01-05 15:00:42,327 [ 13147] INFO - #c.j.r.p.c.CodeWithMeCleanup - running activity to cleanup old thin clients... Root path is '/home/admin/.cache/JetBrains'. JvmStartTimeMs=1672927228929 2023-01-05 15:00:42,329 [ 13149] INFO - #c.j.r.p.c.CodeWithMeCleanup - found 0 Code With Me client system folders to check 2023-01-05 15:00:42,329 [ 13149] INFO - #c.j.r.p.c.CodeWithMeCleanup - found 0 Code With Me client config folders to check 2023-01-05 15:00:42,330 [ 13150] INFO - #c.j.r.p.c.CodeWithMeCleanup - keep only [] major versions 2023-01-05 15:00:42,369 [ 13189] INFO - #c.i.w.i.i.WorkspaceModelImpl - Updating project model. New version: 3. Whole update took 13 ms. Desc: Apply JPS storage (iml files) 2023-01-05 15:00:42,373 [ 13193] INFO - #c.i.w.i.i.j.s.DelayedProjectSynchronizer$Companion - Workspace model loaded from cache. Syncing real project state into workspace model in 88 ms. Thread[DefaultDispatcher-worker-24,5,main] 2023-01-05 15:00:42,708 [ 13528] INFO - #c.i.j.n.p.n.PackageVersionRangeMatcher - Matching 6 done in 83 ms 2023-01-05 15:00:43,115 [ 13935] INFO - #c.i.v.l.d.VcsLogData - Username not configured for root file:///home/admin/Documents/test-cypress 2023-01-05 15:00:43,166 [ 13986] INFO - #c.i.v.l.d.i.IndexDiagnosticRunner - Running index diagnostic for [file:///home/admin/Documents/test-cypress] 2023-01-05 15:00:47,558 [ 18378] INFO - #c.i.c.ComponentStoreImpl - Saving appFileTypeManager took 18 ms, NodeJsLocalInterpreterManager took 44 ms 2023-01-05 15:00:47,707 [ 18527] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=test-cypress, containerState=COMPONENT_CREATED, componentStore=/home/admin/Documents/test-cypress)PHPCSFixerOptionsConfiguration took 20 ms, VcsDirectoryMappings took 16 ms 2023-01-05 15:00:53,281 [ 24101] INFO - #c.i.u.t.DateFormatUtil - cannot load system formats (JNA=true), resorting to JRE for en_US 2023-01-05 15:00:55,519 [ 26339] INFO - #c.i.o.a.i.PopupMenuPreloader - 21068 ms since showing to preload popup menu 'Edit' at 'MainMenu(preload-bgt)' in 94 ms 2023-01-05 15:00:55,541 [ 26361] INFO - #c.i.o.a.i.PopupMenuPreloader - 21092 ms since showing to preload popup menu 'View' at 'MainMenu(preload-bgt)' in 118 ms 2023-01-05 15:00:55,565 [ 26385] INFO - #c.i.o.a.i.PopupMenuPreloader - 21117 ms since showing to preload popup menu 'File' at 'MainMenu(preload-bgt)' in 144 ms 2023-01-05 15:00:55,572 [ 26392] INFO - #c.i.o.a.i.PopupMenuPreloader - 21123 ms since showing to preload popup menu 'Navigate' at 'MainMenu(preload-bgt)' in 149 ms 2023-01-05 15:00:55,604 [ 26424] INFO - #c.i.o.a.i.PopupMenuPreloader - 21155 ms since showing to preload popup menu 'Code' at 'MainMenu(preload-bgt)' in 181 ms 2023-01-05 15:00:55,633 [ 26453] INFO - #c.i.o.a.i.PopupMenuPreloader - 21184 ms since showing to preload popup menu 'Run' at 'MainMenu(preload-bgt)' in 209 ms 2023-01-05 15:00:55,665 [ 26485] INFO - #c.i.o.a.i.PopupMenuPreloader - 21216 ms since showing to preload popup menu 'Refactor' at 'MainMenu(preload-bgt)' in 242 ms 2023-01-05 15:00:55,677 [ 26497] INFO - #c.i.o.a.i.PopupMenuPreloader - 21228 ms since showing to preload popup menu 'Window' at 'MainMenu(preload-bgt)' in 253 ms 2023-01-05 15:00:55,695 [ 26515] INFO - #c.i.o.a.i.PopupMenuPreloader - 21246 ms since showing to preload popup menu 'Tools' at 'MainMenu(preload-bgt)' in 271 ms 2023-01-05 15:00:55,781 [ 26601] INFO - #c.i.o.a.i.PopupMenuPreloader - 21332 ms since showing to preload popup menu 'Help' at 'MainMenu(preload-bgt)' in 358 ms 2023-01-05 15:00:55,825 [ 26645] INFO - #c.i.o.a.i.PopupMenuPreloader - 20634 ms since showing to preload popup menu 'Project View Popup Menu' at 'ProjectViewPopup(preload-bgt)' in 401 ms 2023-01-05 15:00:55,890 [ 26710] INFO - #c.i.o.a.i.PopupMenuPreloader - 13714 ms since showing to preload popup menu 'Editor Popup Menu' at 'EditorPopup(preload-bgt)' in 465 ms 2023-01-05 15:00:55,890 [ 26710] INFO - #c.i.o.a.i.PopupMenuPreloader - 19885 ms since showing to preload popup menu 'Editor Popup Menu' at 'EditorPopup(preload-bgt)' in 466 ms ```