Skip to content

Commit 6e5e287

Browse files
committed
docs: update test names
1 parent 807e9e2 commit 6e5e287

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/src/test/amazonq/util/workspaceUtils.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ import path from 'path'
88
import { getWorkspaceForFile, getWorkspacePaths } from '../../../shared/utilities/workspaceUtils'
99
import { getTestWorkspaceFolder } from '../../../testInteg/integrationTestsUtilities'
1010

11-
describe('getProjectPaths', function () {
11+
describe('getWorkspace utilities', function () {
1212
const workspaceFolder = getTestWorkspaceFolder()
1313
const appRoot = path.join(workspaceFolder, 'java11-plain-maven-sam-app')
1414
const appCodePath = path.join(appRoot, 'HelloWorldFunction', 'src', 'main', 'java', 'helloworld', 'App.java')
1515

16-
it('Should return the correct project paths', function () {
16+
it('returns the correct workspace paths', function () {
1717
assert.deepStrictEqual(getWorkspacePaths(), [workspaceFolder])
1818
})
1919

20-
it('Should return the correct project path for unit test generation', function () {
20+
it('returns the correct worspace for a filepath', function () {
2121
assert.deepStrictEqual(getWorkspaceForFile(appCodePath), workspaceFolder)
2222
})
2323
})

0 commit comments

Comments
 (0)