Update API endpoint in apiKey.test.ts

- Replace old endpoint with the new 'https://api.devchat.ai/v1' endpoint.
This commit is contained in:
bobo.yang 2023-07-24 00:11:56 +08:00
parent 78d1db75f5
commit 23883abc20

View File

@ -59,7 +59,7 @@ describe('ApiKeyManager', () => {
sinon.stub(UiUtilWrapper, 'getConfiguration').returns(undefined);
const endPoint = ApiKeyManager.getEndPoint('DC.key');
expect(endPoint).to.equal('https://xw4ymuy6qj.ap-southeast-1.awsapprunner.com/api/v1');
expect(endPoint).to.equal('https://api.devchat.ai/v1');
});
});