react-native-integrate
Version:
Automate integration of additional code into React Native projects
12 lines (11 loc) • 451 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const options_1 = require("../../options");
// generate tests for options get and set method
describe('options', () => {
it('should get and set the default value', () => {
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
options_1.options.set({ test: true });
expect(options_1.options.get()).toEqual({ test: true });
});
});