We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92230e2 commit 7f4de75Copy full SHA for 7f4de75
1 file changed
src/test/java/com/embabel/template/agent/WriteAndReviewAgentIntegrationTest.java
@@ -4,6 +4,7 @@
4
import com.embabel.agent.domain.io.UserInput;
5
import com.embabel.agent.testing.integration.EmbabelMockitoIntegrationTest;
6
import org.junit.jupiter.api.Test;
7
+import org.junit.jupiter.api.BeforeAll;
8
9
import static org.junit.jupiter.api.Assertions.*;
10
@@ -14,6 +15,12 @@
14
15
*/
16
class WriteAndReviewAgentIntegrationTest extends EmbabelMockitoIntegrationTest {
17
18
+ @BeforeAll
19
+ static void setUp() {
20
+ // Set shell configuration to non-interactive mode
21
+ System.setProperty("embabel.agent.shell.interactive.enabled", "false");
22
+ }
23
+
24
@Test
25
void shouldExecuteCompleteWorkflow() {
26
var input = new UserInput("Write about artificial intelligence");
0 commit comments