react-native-integrate
Version:
Automate integration of additional code into React Native projects
11 lines (10 loc) • 412 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const path_1 = require("path");
const getProjectPath_1 = require("../../../utils/getProjectPath");
describe('getProjectPath', () => {
it('should return current working directory', () => {
const projectPath = (0, path_1.resolve)('.');
expect((0, getProjectPath_1.getProjectPath)()).toEqual(projectPath);
});
});