mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-05 03:30:05 +00:00
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import React, { ReactElement, useState, useContext, useEffect } from "react";
|
|
import { TestSuiteRunner, TestSuite, AppContext } from "@sasjs/test-framework";
|
|
import { basicTests } from "./testSuites/Basic";
|
|
import { sendArrTests, sendObjTests } from "./testSuites/RequestData";
|
|
import { specialCaseTests } from "./testSuites/SpecialCases";
|
|
import { sasjsRequestTests } from "./testSuites/SasjsRequests";
|
|
import "@sasjs/test-framework/dist/index.css";
|
|
|
|
const App = (): ReactElement<{}> => {
|
|
const { adapter, config } = useContext(AppContext);
|
|
const [testSuites, setTestSuites] = useState<TestSuite[]>([]);
|
|
|
|
useEffect(() => {
|
|
if (adapter) {
|
|
setTestSuites([
|
|
basicTests(adapter, config.userName, config.password),
|
|
sendArrTests(adapter),
|
|
sendObjTests(adapter),
|
|
specialCaseTests(adapter),
|
|
sasjsRequestTests(adapter)
|
|
]);
|
|
}
|
|
}, [adapter, config]);
|
|
|
|
return (
|
|
<div className="app">
|
|
{adapter && testSuites && <TestSuiteRunner testSuites={testSuites} />}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|