You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
Currently, it does not take any detailed information when importing.
For example,
function firstName() { return 'Wataru' };
function lastName() { return 'Oguchi' };
module.exports.default = { firstName, lastName }
The result is:
import test from "./test.ts";
describe("test", function() {
describe("test", function() {
it("", function() {
// TODO Write test for test
});
});
});
I want something like:
import test from "./test.ts";
describe("test.firstName", function() {
describe("test.firstName", function() {
it("", function() {
// TODO Write test for test.firstName
});
});
});
describe("test.lastName", function() {
describe("test.lastName", function() {
it("", function() {
// TODO Write test for test.lastName
});
});
});
The text was updated successfully, but these errors were encountered:
Currently, it does not take any detailed information when importing.
For example,
The result is:
I want something like:
The text was updated successfully, but these errors were encountered: