Skip to content

Commit

Permalink
Check for vscode readme version
Browse files Browse the repository at this point in the history
  • Loading branch information
quekyj committed Dec 14, 2023
1 parent 35f5100 commit 8292e58
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions test/config_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,13 @@ void main() async {
deleteTemporaryDump(dumpName);
});
}

test('should update the vscode readme version', () async {
const version = Config.version;

final file = File('vs_code/README.md');
final contents = await file.readAsString();

expect(contents.contains(version), true);
});
}
2 changes: 1 addition & 1 deletion vs_code/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ROHD (pronounced as "road") is a framework for describing and verifying hardware

## Features

Currently, this extension follows the conventions in ROHD [v0.5.0](https://github.com/intel/rohd/releases/tag/v0.5.0). It suggests auto-completions when you start typing the prefixes as shown in the table below:
Currently, this extension follows the conventions in ROHD [v0.5.1](https://github.com/intel/rohd/releases/tag/v0.5.1). It suggests auto-completions when you start typing the prefixes as shown in the table below:

| Name | Prefix | Description |
| :---: | :---: | :--: |
Expand Down

0 comments on commit 8292e58

Please sign in to comment.