We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/viowb/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
courses.cy.js•456 B
describe('Courses flow', () => {
it('visits the courses page and checks for course listings', () => {
cy.visit('/courses');
// The page structure may vary; check for likely headings or course cards
cy.contains(/Courses|All Courses|Popular Courses|Courses Offered/i).should('be.visible');
// If there are course cards, at least one should be visible
cy.get('article, .course-card, .course, .card').first().should('exist');
});
});