本文介绍了如何在Jasmine中使用beforeAll函数? (不是coffeeScript)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我需要知道是否有办法包含或使用beforeAll函数或类似的东西,所以我可以登录我的应用程序然后开始测试。I need to know if there is a way to include or use a beforeAll function, or something similar, so I can login to my application and then start testing.现在我将登录操作放在第一个测试用例中( it )。这不是一个好习惯。Right now I'm putting my login operations in the first test case ( it ). Which is not a good practice.如果有更好的方法来存储我的登录代码,那么使用beforeAll函数请告诉我它。If there is a better way to store my login code other then using a beforeAll function please tell me about it.我使用的是与任何其他框架(如咖啡脚本或其他框架)无关的纯Jasmine。I'm using pure Jasmine not related to any other framework like coffee-script or others.谢谢推荐答案现在这更容易了。从Jasmine 2.1(2014年11月14日发布)开始,框架内置了一个 beforeAll 函数。This is now much easier. As of Jasmine 2.1 (released 14 Nov 2014), there is a beforeAll function built into the framework. 以下是发布说明,其中包含2.1中添加的所有内容。 这里是文档,解释 beforeAll 和 afterAll Here are the release notes with everything that was added in 2.1. And here is the documentation explaining beforeAll and afterAll 这篇关于如何在Jasmine中使用beforeAll函数? (不是coffeeScript)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-28 11:38