-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Add cli support for creating tests
The following should be implemented:
CLI Support for make
ronin make:test %NAME%The test file should contain test in it's name:
e.g. helloworld.test.js
All tests should be located in the tests directory at the root of the repo
/tests/*
The test template should looking something like this:
async function %TEST%() {
return;
}
tests("TEST 1", () => {
return %TEST%().then(data => {
expect(data).toBeNull()
});
}Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers