JetBrains-Research / TestSpark

TestSpark - a plugin for generating unit tests. TestSpark natively integrates different AI-based test generation tools and techniques in the IDE. Started by SERG TU Delft. Currently under implementation by JetBrains Research (Software Testing Research) for research purposes.
MIT License
47 stars 13 forks source link

Remove `Thread.sleep(10000)` #238

Closed arksap2002 closed 4 months ago

arksap2002 commented 4 months ago

Remove Thread.sleep(10000) from this method:

private fun returnOriginalEditorBackground(editor: EditorTextField) {
    Thread {
        Thread.sleep(10000)
        editor.background = defaultEditorColor
    }.start()
}