Skip to content

Commit

Permalink
ran prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiaobr committed Oct 8, 2025
1 parent 1767dd1 commit 3f858c0
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 14 deletions.
4 changes: 3 additions & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
Closes #

### Description

<!-- What does this PR do? Briefly describe the changes and their purpose. -->

### Testing steps

<!-- Describe how reviewers can test your changes (commands, steps, or setup instructions). -->

### Screenshots (optional)
### Screenshots (optional)
8 changes: 4 additions & 4 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { defineConfig } from "cypress";
import { defineConfig } from 'cypress'

export default defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});
}
}
})
8 changes: 4 additions & 4 deletions cypress/e2e/demo.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ describe('demo test', () => {
cy.visit('http://localhost:5173/#')
cy.contains('Molloy Explorer')
cy.contains('Repeat').click()

})
})

describe('demo test 2', () => {
it('passes', () => {
cy.visit('http://localhost:5173/#')
cy.get('#elevation_gradient_scheme_selection span:nth-child(1) rect').click();

cy.get(
'#elevation_gradient_scheme_selection span:nth-child(1) rect'
).click()
})
})
})
2 changes: 1 addition & 1 deletion cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
//
//
// -- This will overwrite an existing command --
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
2 changes: 1 addition & 1 deletion cypress/support/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
// ***********************************************************

// Import commands.js using ES2015 syntax:
import './commands'
import './commands'
1 change: 0 additions & 1 deletion src/coordinateShowing/coordinateShowing.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,3 @@
margin-bottom: 10px;
border-radius: 5px;
}

4 changes: 2 additions & 2 deletions src/coordinateShowing/coordinateShowing.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ecef } from "../config.js";
import { wgs84 } from "../config.js";
import { ecef } from '../config.js'
import { wgs84 } from '../config.js'

const posCanvas = document.getElementById('posCanvas') // lat/lon
const elevationCanvas = document.getElementById('elevationCanvas')
Expand Down

0 comments on commit 3f858c0

Please sign in to comment.