# Intellij idea configurations

**URL:** https://talk.openelis-global.org/t/intellij-idea-configurations/838
**Category:** Development
**Tags:** dev\_setup
**Created:** [August 22, 2024, 1:18pm UTC](https://talk.openelis-global.org/t/intellij-idea-configurations/838 "2024-08-22T13:18:21Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![tasksolver](https://yyz2.discourse-cdn.com/flex030/user_avatar/talk.openelis-global.org/tasksolver/32/1067_2.png) [@tasksolver](https://talk.openelis-global.org/u/tasksolver)
#### Post date: [August 22, 2024, 1:18pm UTC](https://talk.openelis-global.org/t/intellij-idea-configurations/838/1 "2024-08-22T13:18:21Z")

</div>

Hello devs, anyone using intellij idea help me with configurations. I am trying to run some tests, but I think somehow somewhere my configurations are hindering me.

 ![Screenshot from 2024-08-22 16-12-17](https://canada1.discourse-cdn.com/flex030/uploads/openelisci/original/1X/46f3c4864492248ad1362758fc6625e40c81a5f0.png)

any help is highly appreciated

---

<div class="post-metadata">

### Author: ![mherman22](https://yyz2.discourse-cdn.com/flex030/user_avatar/talk.openelis-global.org/mherman22/32/92_2.png) [@mherman22](https://talk.openelis-global.org/u/mherman22)
#### Post date: [August 22, 2024, 4:29pm UTC](https://talk.openelis-global.org/t/intellij-idea-configurations/838/2 "2024-08-22T16:29:02Z")

</div>

clearly explain what is actually happening.

---

<div class="post-metadata">

### Author: ![tasksolver](https://yyz2.discourse-cdn.com/flex030/user_avatar/talk.openelis-global.org/tasksolver/32/1067_2.png) [@tasksolver](https://talk.openelis-global.org/u/tasksolver)
#### Post date: [August 24, 2024, 4:16pm UTC](https://talk.openelis-global.org/t/intellij-idea-configurations/838/3 "2024-08-24T16:16:56Z")

</div>

I was trying to run the tests and have a picture of how the normal tests would look like to assist me cause I want to work on some issues related to testing. But for some reason I believe to be configuration related, the tests are not running.

---

<div class="post-metadata">

### Author: ![aditya](https://avatars.discourse-cdn.com/v4/letter/a/df705f/32.png) [@aditya](https://talk.openelis-global.org/u/aditya)
#### Post date: [August 24, 2024, 5:22pm UTC](https://talk.openelis-global.org/t/intellij-idea-configurations/838/4 "2024-08-24T17:22:27Z")

</div>

You can directly run test using command

`mvn test`

via terminal at the TOP of project directly

as @rahul6603 said in previous DEV CALL

---

<div class="post-metadata">

### Author: ![tasksolver](https://yyz2.discourse-cdn.com/flex030/user_avatar/talk.openelis-global.org/tasksolver/32/1067_2.png) [@tasksolver](https://talk.openelis-global.org/u/tasksolver)
#### Post date: [August 24, 2024, 5:52pm UTC](https://talk.openelis-global.org/t/intellij-idea-configurations/838/5 "2024-08-24T17:52:10Z")

</div>

on point @aditya , and @rahul6603 it works,

 ![Screenshot from 2024-08-24 20-51-12](https://canada1.discourse-cdn.com/flex030/uploads/openelisci/original/1X/6d156b5d44cdd7fa3b1e7354b7c28c6900e4d176.png)  
thanks a lot.

---

<div class="post-metadata">

### Author: ![tasksolver](https://yyz2.discourse-cdn.com/flex030/user_avatar/talk.openelis-global.org/tasksolver/32/1067_2.png) [@tasksolver](https://talk.openelis-global.org/u/tasksolver)
#### Post date: [August 24, 2024, 6:02pm UTC](https://talk.openelis-global.org/t/intellij-idea-configurations/838/6 "2024-08-24T18:02:30Z")

</div>

so @aditya how do I run a specific test??

---

<div class="post-metadata">

### Author: ![aditya](https://avatars.discourse-cdn.com/v4/letter/a/df705f/32.png) [@aditya](https://talk.openelis-global.org/u/aditya)
#### Post date: [August 24, 2024, 6:17pm UTC](https://talk.openelis-global.org/t/intellij-idea-configurations/838/7 "2024-08-24T18:17:22Z")

</div>

using there testName specific testName which ever you want to run

example `mvn test -Dtest=<TestClassName>`

let me know if this works !

---

<div class="post-metadata">

### Author: ![tasksolver](https://yyz2.discourse-cdn.com/flex030/user_avatar/talk.openelis-global.org/tasksolver/32/1067_2.png) [@tasksolver](https://talk.openelis-global.org/u/tasksolver)
#### Post date: [August 24, 2024, 6:27pm UTC](https://talk.openelis-global.org/t/intellij-idea-configurations/838/8 "2024-08-24T18:27:52Z")

</div>

thanks @aditya it should work basing on the successful test earlier when i run “mvn test”

---

<div class="post-metadata">

### Author: ![tasksolver](https://yyz2.discourse-cdn.com/flex030/user_avatar/talk.openelis-global.org/tasksolver/32/1067_2.png) [@tasksolver](https://talk.openelis-global.org/u/tasksolver)
#### Post date: [August 24, 2024, 6:38pm UTC](https://talk.openelis-global.org/t/intellij-idea-configurations/838/9 "2024-08-24T18:38:25Z")

</div>

it works really fine
