Skip to content

Commit e2da560

Browse files
committed
Test failures
1 parent c0ef81a commit e2da560

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

packages/amazonq/test/unit/validation.test.ts

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,32 @@ describe('package validations', function () {
2727
)
2828
assert.deepStrictEqual(packageJson.contributes.icons, corePackageJson.contributes.icons)
2929
})
30+
31+
describe('foo', () => {
32+
it('bar1', () => {
33+
assert.ok(true)
34+
})
35+
describe('fi', () => {
36+
it('bar2', () => {
37+
assert.ok(true)
38+
})
39+
describe('fo234', () => {
40+
it('bar3', () => {
41+
throw new Error('foo')
42+
})
43+
})
44+
})
45+
})
46+
47+
describe('package validations', () => {
48+
it('wee', () => {
49+
assert.ok(true)
50+
})
51+
52+
describe('foo', () => {
53+
it('wee 2', () => {
54+
assert.ok(true)
55+
})
56+
})
57+
})
3058
})

packages/core/src/test/shared/applicationBuilder/explorer/nodes/appNode.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ describe('AppNode', () => {
169169

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

0 commit comments

Comments
 (0)