diff --git a/ballerina/tests/test.bal b/ballerina/tests/test.bal index f97cd7a..e0d0c97 100644 --- a/ballerina/tests/test.bal +++ b/ballerina/tests/test.bal @@ -14,9 +14,16 @@ // specific language governing permissions and limitations // under the License. +import ballerina/os; import ballerina/log; import ballerina/test; +configurable string clientId = os:getEnv("CLIENT_ID"); +configurable string clientSecret = os:getEnv("CLIENT_SECRET"); +configurable string refreshToken = os:getEnv("REFRESH_TOKEN"); +configurable string refreshUrl = os:getEnv("REFRESH_URL"); +configurable string workbookIdOrPath = os:getEnv("WORKBOOK_PATH"); + ConnectionConfig configuration = { auth: { clientId: clientId, diff --git a/issue_template.md b/issue_template.md deleted file mode 100644 index 757e13e..0000000 --- a/issue_template.md +++ /dev/null @@ -1,18 +0,0 @@ -**Description:** - - -**Suggested Labels:** - - -**Suggested Assignees:** - - -**Affected Product Version:** - -**OS, DB, other environment details and versions:** - -**Steps to reproduce:** - - -**Related Issues:** - \ No newline at end of file