Skip to content

Commit 6ca2a4f

Browse files
authored
chore: changes dependabot from daily to weekly (#26)
* Also changes the test assertion order to align with documentation: ``` coercive equality between the `actual` and `expected` parameters ```
1 parent 53a0b00 commit 6ca2a4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ updates:
33
- package-ecosystem: "npm"
44
directory: "/"
55
schedule:
6-
interval: "daily"
6+
interval: "weekly"

test/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ test('Generate something', async () => {
1111
const aibom = aibomGenerator.generateAIBOM(trendingModels.pop());
1212

1313
const expected = 'CycloneDX';
14-
assert.equal(expected, aibom.bomFormat);
14+
assert.equal(aibom.bomFormat, expected);
1515
});
1616

1717
test('Saves a temp file in generated_aiboms', () => {

0 commit comments

Comments
 (0)