/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ package com.facebook.react.tasks.internal import com.facebook.react.tests.createTestTask import org.assertj.core.api.Assertions.assertThat import org.junit.Rule import org.junit.Test import org.junit.rules.TemporaryFolder class BuildCodegenCLITaskTest { @get:Rule val tempFolder = TemporaryFolder() @Test fun buildCodegenCli_bashWindowsHome_isSetCorrectly() { val bashPath = tempFolder.newFile("bash").absolutePath val task = createTestTask { it.bashWindowsHome.set(bashPath) } assertThat(task.bashWindowsHome.get()).isEqualTo(bashPath) } }