8 lines
252 B
JavaScript
8 lines
252 B
JavaScript
const { getStepDefinitionPathsFrom } = require("./getStepDefinitionPathsFrom");
|
|
|
|
test("getStepDefinitionPathsFrom", () => {
|
|
expect(
|
|
getStepDefinitionPathsFrom("/home/lgandecki/someComplex_.feature")
|
|
).equal("/home/lgandecki/someComplex_");
|
|
});
|