19 lines
471 B
JavaScript
19 lines
471 B
JavaScript
|
'use strict';
|
||
|
|
||
|
jest.autoMockOff();
|
||
|
|
||
|
const makeBuildPatch = require('../../src/android/patches/makeBuildPatch');
|
||
|
const name = 'test';
|
||
|
|
||
|
describe('makeBuildPatch', () => {
|
||
|
it('should build a patch function', () => {
|
||
|
expect(Object.prototype.toString(makeBuildPatch(name)))
|
||
|
.toBe('[object Object]');
|
||
|
});
|
||
|
|
||
|
it('should make a correct patch', () => {
|
||
|
const {patch} = makeBuildPatch(name);
|
||
|
expect(patch).toBe(` compile project(':${name}')\n`);
|
||
|
});
|
||
|
});
|