mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-17 15:53:28 +02:00
* feat: Display STF version in Web UI Adds the STF application version to the main menu in the Web UI. Changes: - Modified `lib/units/app/index.js` to read the version from `package.json` and make it available to the frontend via the `GLOBAL_APPSTATE.config.stfVersion` variable. - Updated `res/app/menu/menu.pug` to display this version in the top navigation bar, near the help icon. The format is "vX.Y.Z". - Added an E2E test (`res/test/e2e/menu/menu-spec.js`) to verify the presence and correct format of the version string in the UI. Signed-off-by: matanbaruch <matan.baruch@unity3d.com> * Update menu-spec.js Signed-off-by: matanbaruch <matan.baruch@unity3d.com> * fix: lint Signed-off-by: matanbaruch <matan.baruch@unity3d.com> * feat: Add application state to root scope and style version text in menu - Introduced a new run block in `app.js` to attach the application state to the `$rootScope`. - Added CSS styles for the version text in the menu to enhance its visibility and layout. Signed-off-by: matanbaruch <matan.baruch@unity3d.com> * fix: Correct path to package.json in index.js Updated the import statement for package.json in lib/units/app/index.js to use the correct relative path, ensuring proper access to the application version information. Signed-off-by: matanbaruch <matan.baruch@unity3d.com> --------- Signed-off-by: matanbaruch <matan.baruch@unity3d.com> Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
17 lines
569 B
JavaScript
17 lines
569 B
JavaScript
describe('Menu', function() {
|
|
it('should display the STF version', function() {
|
|
// Navigate to the device list page
|
|
browser.get('/#!/devices')
|
|
|
|
// Find the version display element
|
|
var versionElement = element(by.css('.stf-menu .version-text'))
|
|
|
|
// Assert that the element is present
|
|
expect(versionElement.isPresent()).toBe(true)
|
|
|
|
// Assert that the text matches 'v' + version from package.json
|
|
// Using a regex to be more flexible with the exact version number.
|
|
expect(versionElement.getText()).toMatch(/^v\d+\.\d+\.\d+$/)
|
|
})
|
|
})
|