* Run all tests.
()
| 232 | * Run all tests. |
| 233 | */ |
| 234 | async runAll(): Promise<void> { |
| 235 | console.log("A3S Code Node.js SDK - Web Search Configuration Test\n"); |
| 236 | console.log("=".repeat(80)); |
| 237 | |
| 238 | await this.testDefaultSearch(); |
| 239 | await this.testCustomSearchConfig(); |
| 240 | await this.testEngineControl(); |
| 241 | |
| 242 | console.log("\n\n"); |
| 243 | console.log("=".repeat(80)); |
| 244 | console.log("All search configuration tests completed!"); |
| 245 | console.log("=".repeat(80)); |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | /** |
no test coverage detected