Skip to content

Commit

Permalink
test: verify broken files
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac committed Feb 24, 2025
1 parent 5f5bfa5 commit 13dfaf6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/lib/file-context/__tests__/file-context-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ describe('FileContext', function() {

// then
expect(file).to.exist;
expect(file).to.have.property('type');
expect(file.metadata).to.have.property('type');
});


Expand All @@ -182,7 +182,7 @@ describe('FileContext', function() {

// then
expect(file).to.exist;
expect(file).to.have.property('type');
expect(file.metadata).to.have.property('type');
});


Expand All @@ -198,7 +198,7 @@ describe('FileContext', function() {

// then
expect(file).to.exist;
expect(file).to.have.property('type');
expect(file.metadata).to.have.property('type');
});


Expand All @@ -212,7 +212,7 @@ describe('FileContext', function() {

// then
expect(file).to.exist;
expect(file).to.have.property('type');
expect(file.metadata).to.have.property('type');
});


Expand All @@ -226,7 +226,7 @@ describe('FileContext', function() {

// then
expect(file).to.exist;
expect(file).to.have.property('type');
expect(file.metadata).to.have.property('type');
});


Expand All @@ -240,7 +240,7 @@ describe('FileContext', function() {

// then
expect(file).to.exist;
expect(file).to.have.property('type');
expect(file.metadata).to.have.property('type');
});
});

Expand Down
Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
null

0 comments on commit 13dfaf6

Please sign in to comment.