import fetch from 'node-fetch'; import cheerio from 'cheerio'; const server = 'http://localhost:3275'; it('renders the home page', async () => { const res = await fetch(server); const html = await res.text(); const $ = cheerio.load(html); expect($('title').text()).toBe('Examples'); });