We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd3c1f4 commit fb43460Copy full SHA for fb43460
tests/run.nu
@@ -0,0 +1,18 @@
1
+# Run all tests in the gpt2099 test suite
2
+
3
+export def main [] {
4
+ print "🧪 Running gpt2099 test suite...\n"
5
6
+ # Run schema layer tests
7
+ print "📋 Schema Layer Tests:"
8
+ use schema/test-schema-generation.nu
9
+ test-schema-generation
10
+ print ""
11
12
+ # Run provider transformation tests
13
+ print "🔄 Provider Transformation Tests:"
14
+ use providers/test-prepare-request.nu
15
+ test-prepare-request
16
17
+ print "\n🎉 All tests completed successfully!"
18
+}
0 commit comments