Skip to content

Commit f4ec74e

Browse files
author
Iurii Golovinskii
committed
raname files and title for test
1 parent b5f9402 commit f4ec74e

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

test/apiKinds.test.ts

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import {
18-
API_KIND,
19-
BREAKING_CHANGE_TYPE,
20-
BUILD_TYPE,
21-
RISKY_CHANGE_TYPE,
22-
SEMI_BREAKING_CHANGE_TYPE,
23-
VERSION_STATUS,
24-
} from '../src'
17+
import { API_KIND, BREAKING_CHANGE_TYPE, BUILD_TYPE, RISKY_CHANGE_TYPE, VERSION_STATUS } from '../src'
2518
import { Editor, LocalRegistry } from './helpers'
2619

2720
let afterPackage: LocalRegistry
@@ -112,7 +105,7 @@ describe('API Kinds test', () => {
112105
})
113106

114107
const portal = new LocalRegistry(AFTER_PACKAGE_ID)
115-
describe('Semi-breaking changes for no-bwc operations test', () => {
108+
describe('Risky changes for no-bwc operations test', () => {
116109
beforeAll(async () => {
117110
await portal.publish(AFTER_PACKAGE_ID, {
118111
packageId: AFTER_PACKAGE_ID,
@@ -135,7 +128,7 @@ describe('Semi-breaking changes for no-bwc operations test', () => {
135128
})
136129
})
137130

138-
test('should have 2 semi-breaking change for no-bwc operations (changed and removed)', async () => {
131+
test('should have 2 risky change for no-bwc operations (changed and removed)', async () => {
139132
const editor = new Editor(AFTER_PACKAGE_ID, {
140133
packageId: AFTER_PACKAGE_ID,
141134
version: 'v2',

test/semi-breaking-changes.test.ts renamed to test/risky-changes.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import { BREAKING_CHANGE_TYPE, BUILD_TYPE, NON_BREAKING_CHANGE_TYPE, RISKY_CHANG
1919

2020
const portal = new LocalRegistry('new-deprecated')
2121

22-
describe('Semi-breaking changes test', () => {
23-
test('should build 1 semi-breaking change', async () => {
22+
describe('Risky changes test', () => {
23+
test('should build 1 risky change', async () => {
2424
const packageId = 'new-deprecated-semibreaking'
2525

2626
await portal.publish('new-deprecated', {
@@ -154,7 +154,7 @@ describe('Semi-breaking changes test', () => {
154154
}))
155155
})
156156

157-
test('should build 3 semi-breaking change for removed required property and required status', async () => {
157+
test('should build 3 risky change for removed required property and required status', async () => {
158158
const packageId = 'new-deprecated-semibreaking-required'
159159

160160
await portal.publish('new-deprecated', {

0 commit comments

Comments
 (0)