{"library":"wdio-jasmine-framework","install":[{"cmd":"npm install wdio-jasmine-framework","imports":["// wdio.conf.js\nmodule.exports = {\n  // ...\n  framework: 'jasmine',\n  // ...\n};","describe('My test suite', () => {\n  it('should navigate to a page', async () => {\n    await browser.url('https://example.com');\n    await expect(browser).toHaveTitle('Example Domain');\n  });\n});","// wdio.conf.js\nmodule.exports = {\n  // ...\n  jasmineNodeOpts: {\n    defaultTimeoutInterval: 60000,\n    expectationResultHandler: function(passed, assertion) {\n      if (!passed) {\n        console.log(`Assertion failed: ${assertion.message}`);\n        // Example: browser.saveScreenshot(`./screenshots/${assertion.fullName}.png`);\n      }\n    }\n  }\n  // ...\n};"]},{"cmd":"yarn add wdio-jasmine-framework","imports":[]},{"cmd":"pnpm add wdio-jasmine-framework","imports":[]}]}