mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
27 lines
654 B
JavaScript
27 lines
654 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.
|
||
|
*
|
||
|
* @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');
|
||
|
});
|
||
|
});
|