mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 07:02:51 +08:00
fix: unit-test failure (#1184)
This commit is contained in:
parent
cb1cf4dc8e
commit
6dcd67a902
@ -255,20 +255,20 @@ describe('check_reqs', function () {
|
||||
});
|
||||
});
|
||||
|
||||
it('with ANDROID_SDK_ROOT / without ANDROID_HOME', () => {
|
||||
it('with ANDROID_SDK_ROOT / without ANDROID_HOME', async () => {
|
||||
process.env.ANDROID_SDK_ROOT = '/android/sdk/root';
|
||||
expectAsync(check_reqs.check_gradle()).toBeResolvedTo('/android/sdk/root/bin/gradle');
|
||||
await expectAsync(check_reqs.check_gradle()).toBeResolvedTo('/android/sdk/root/bin/gradle');
|
||||
});
|
||||
|
||||
it('with ANDROID_SDK_ROOT / with ANDROID_HOME', () => {
|
||||
it('with ANDROID_SDK_ROOT / with ANDROID_HOME', async () => {
|
||||
process.env.ANDROID_SDK_ROOT = '/android/sdk/root';
|
||||
process.env.ANDROID_HOME = '/android/sdk/home';
|
||||
expectAsync(check_reqs.check_gradle()).toBeResolvedTo('/android/sdk/root/bin/gradle');
|
||||
await expectAsync(check_reqs.check_gradle()).toBeResolvedTo('/android/sdk/root/bin/gradle');
|
||||
});
|
||||
|
||||
it('without ANDROID_SDK_ROOT / with ANDROID_HOME', () => {
|
||||
it('without ANDROID_SDK_ROOT / with ANDROID_HOME', async () => {
|
||||
process.env.ANDROID_HOME = '/android/sdk/home';
|
||||
expectAsync(check_reqs.check_gradle()).toBeResolvedTo('/android/sdk/home/bin/gradle');
|
||||
await expectAsync(check_reqs.check_gradle()).toBeResolvedTo('/android/sdk/home/bin/gradle');
|
||||
});
|
||||
|
||||
it('without ANDROID_SDK_ROOT / without ANDROID_HOME', () => {
|
||||
|
@ -826,17 +826,17 @@ describe('prepare', () => {
|
||||
api = new Api();
|
||||
});
|
||||
|
||||
it('runs without arguments', () => {
|
||||
expectAsync(
|
||||
it('runs without arguments', async () => {
|
||||
await expectAsync(
|
||||
api.prepare(cordovaProject, options).then(() => {
|
||||
expect(gradlePropertiesParserSpy).toHaveBeenCalledWith({});
|
||||
})
|
||||
).toBeResolved();
|
||||
});
|
||||
|
||||
it('runs with jvmargs', () => {
|
||||
it('runs with jvmargs', async () => {
|
||||
options.options.argv = ['--jvmargs=-Xmx=4096m'];
|
||||
expectAsync(
|
||||
await expectAsync(
|
||||
api.prepare(cordovaProject, options).then(() => {
|
||||
expect(gradlePropertiesParserSpy).toHaveBeenCalledWith({
|
||||
'org.gradle.jvmargs': '-Xmx=4096m'
|
||||
|
Loading…
Reference in New Issue
Block a user