react-native/local-cli/link/__tests__/android/normalizeProjectName.spec.js

26 lines
649 B
JavaScript

/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* All rights reserved.
*
* @format
* @emails oncall+javascript_foundation
*/
'use strict';
const normalizeProjectName = require('../../android/patches/normalizeProjectName');
const name = 'test';
const scopedName = '@scoped/test';
describe('normalizeProjectName', () => {
it('should replace slashes with underscores', () => {
expect(normalizeProjectName(name)).toBe('test');
expect(normalizeProjectName(scopedName)).toBe('@scoped_test');
});
});