ralyodio
ralyodio
+1 for Deno support ``` error: Import 'https://cdn.esm.sh/error.js?type=unsupported-nodejs-builtin-module&name=child_process&importer=jsdom' failed: 500 Internal Server Error at https://cdn.esm.sh/v57/[email protected]/es2021/jsdom.js:2:1022 ``` https://esm.sh/jsdom
6 months later...
How do I add the test methods?
Is there a page that explains how to set up?
Yes I’m using jest for unit tests. Wondering how to get it to work with puppeteer too
I've got this now. but it won't run. It doesn't find "it()" ``` const puppeteer = require('puppeteer'); const { getDocument, queries, waitFor } = require('pptr-testing-library'); const { getByTestId, getByLabelText }...
Ok so actually it works. lol. but puppetter is not opening an actual browser. Is there a way to enable that?
How can I do this: ``` expect(await $document.evaluate(el => el.title)).toEqual('Catalyze - Log In'); ``` It throws an error.
https://stackoverflow.com/questions/71890151/referenceerror-context-is-not-defined-when-using-cypress-with-testing-library-c https://testing-library.com/docs/cypress-testing-library/intro/
anyone figure it out?