* prepare monorepo and move client to its package * create nx workspace * workspace cleanup and updates * upgrade nx workspace and fix client package * add basic codegen logic * first working build script * update nextjs app * update generated code * add koldstart core and client foundation * add basic fetch implementation to client * add stable diffusion example * remove local output image * remove keys * remove more keys * update client usage and samples * remove grpc client code and dependencies * rename base package * remove core package * continue package refactor * rename koldstart apis * refactor main function run api * add listen function stub * removed more koldstart references * build workflow added * minor doc updates - trigger workflow * nx workflow action
14 lines
404 B
TypeScript
14 lines
404 B
TypeScript
import { getGreeting } from '../support/app.po';
|
|
|
|
describe('demo-app', () => {
|
|
beforeEach(() => cy.visit('/'));
|
|
|
|
it('should display welcome message', () => {
|
|
// Custom command example, see `../support/commands.ts` file
|
|
cy.login('my-email@something.com', 'myPassword');
|
|
|
|
// Function helper example, see `../support/app.po.ts` file
|
|
getGreeting().contains('Welcome demo-app');
|
|
});
|
|
});
|