Skip to content

Commit

Permalink
Test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
jpinkney-aws committed Dec 23, 2024
1 parent c0ef81a commit e2da560
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions packages/amazonq/test/unit/validation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,32 @@ describe('package validations', function () {
)
assert.deepStrictEqual(packageJson.contributes.icons, corePackageJson.contributes.icons)
})

describe('foo', () => {
it('bar1', () => {
assert.ok(true)
})
describe('fi', () => {
it('bar2', () => {
assert.ok(true)
})
describe('fo234', () => {
it('bar3', () => {
throw new Error('foo')
})
})
})
})

describe('package validations', () => {
it('wee', () => {
assert.ok(true)
})

describe('foo', () => {
it('wee 2', () => {
assert.ok(true)
})
})
})
})
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ describe('AppNode', () => {

describe('getTreeItem', () => {
it('should return a TreeItem with the correct properties', () => {
assert.fail('failed')
const treeItem = appNode.getTreeItem()
const expextedLabel = path.join('VSCode Example Workspace', 'Project One Root Folder')

Expand Down

0 comments on commit e2da560

Please sign in to comment.