2023-05-02
やること宣言
gaaamii.icon
勉強中メモ
gaaamii.icon
これを試してみる
code:こんなかんじで.js
function runElmApp() {
const htmlString = await fs.readFile("build/index.html", "utf-8")...
const jsString = await fs.readFile("build/index.458462fc.js.js", "utf-8")...
const parser = new DOMParser()
root = parser.parseFromString(htmlString)
body = dom.querySelector('#root')
document.body.appendChild(body.children)
eval(jsString)
return root
}
test('Show textarea', async () => {
const container = runElmApp()
expect(
await findByPlaceholderText(container, 'Markdown text here')
).toBeInTheDocument()
})
できた〜!!!
tommy.icon /icons/すごい.icon
うーん、CIで動かすとなんかうまくいかないな
Node.jsのバージョンが12系だ。古いので18系にあげる
バージョンあげたらテスト通った /icons/check.icon
やったこと
gaaamii.icon