Skip to content

Commit

Permalink
Resets unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-n committed Aug 13, 2023
1 parent d8112f2 commit b54637e
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
jobs:
linting:
name: Linting
runs-on: macos-latest
runs-on: macos-11

steps:
- name: Checkout
Expand All @@ -22,12 +22,16 @@ jobs:

appkit:
name: AppKit Tests
runs-on: macos-latest
runs-on: macos-11

steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/checkout@v2
- name: Turn on Do Not Disturb
run: |
brew install vitorgalvao/tiny-scripts/calm-notifications
calm-notifications on
- name: Change to testing branch
env:
XCODEPROJ: Tests/Essayist/Essayist.xcodeproj/project.pbxproj
Expand Down Expand Up @@ -55,7 +59,7 @@ jobs:

uikit:
name: UIKit Tests
runs-on: macos-latest
runs-on: macos-11

steps:
- name: Checkout
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class macOS_EssayistUITests: XCTestCase {

private func selectEditor(_ editorType: EditorType) {
let window = XCUIApplication().windows.firstMatch
window.popUpButtons["Select Editor"].click()
window.popUpButtons.firstMatch.click()
window.menuItems[editorType.rawValue.uppercaseFirst()].click()

if editorType == .blank {
Expand Down Expand Up @@ -97,7 +97,7 @@ class macOS_EssayistUITests: XCTestCase {

func testURLPresetLinkClicks() {
let app = XCUIApplication()
app.launch()
app.activate()

selectEditor(.url)

Expand Down

0 comments on commit b54637e

Please sign in to comment.