如何使用 Cypress 检查 html 文档的文档类型?

How can I check the doctype of an html document using Cypress?

我想使用 Cypress 检查 html 文档的文档类型。具体来说,我想确保文档类型存在并且它等于 <!DOCYTPE html>.

可以从document

doctype属性获取
cy.document().then(doc => {
  expect(doc.doctype !== undefined).to.eq(true)
  expect(doc.doctype.name).to.eq('html')
})