import { expect } from 'chai';
import { config, login } from '../../types';

describe('config', () => {
    it('login successfully', async () => {
        config.baseURL = 'http://defaulttenant.qa-ci.lcap.group';
        const userInfo = await login('admin', 'Admin@123456');
        expect(userInfo.UserId).to.equal('28db2e05f7e54c3b90a9e41e5cfe2318');
    });
});
