HomeTesting Frameworks
Testing Frameworks
Assertions for Jest, Mocha, PyTest.
20 Tools Available
Jest Describe
Matches Jest test suites.
/describe\(["'](.*?)["']/
Jest Expect
Matches Jest assertions.
/expect\((.*?)\)/
Mocha It
Matches Mocha tests.
/it\(["'](.*?)["']/
PyTest Function
Matches PyTest functions.
/def\s+test_(\w+)/
JUnit Test
Matches JUnit annotation.
/@Test/
RSpec Describe
Matches RSpec blocks.
/describe\s+["'](.*?)["']/
PHPUnit Test
Matches PHPUnit tests.
/public\s+function\s+test(\w+)/
Cypress Get
Matches Cypress selectors.
/cy\.get\(["'](.*?)["']\)/
Selenium Find
Matches Selenium finders.
/driver\.findElement/
Go Test Func
Matches Go test functions.
/func\s+Test(\w+)/
Rust Test Attr
Matches Rust test attribute.
/#\[test\]/
NUnit Test
Matches NUnit attribute.
/\[Test\]/
XUnit Fact
Matches XUnit fact.
/\[Fact\]/
Karma Config
Matches Karma config.
/basePath:/
Jasmine Spec
Matches Jasmine specs.
/it\(["'](.*?)["']/
Ava Test
Matches Ava tests.
/test\(["'](.*?)["']/
Vitest Test
Matches Vitest tests.
/test\(["'](.*?)["']/
Playwright Page
Matches Playwright navigation.
/page\.goto\(/
Cucumber Step
Matches Cucumber steps.
/Given\(["'](.*?)["']/
TestCafe Select
Matches TestCafe selectors.
/Selector\(["'](.*?)["']\)/