Skip to content
This repository has been archived by the owner on Aug 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #270 from Shopify/issue-250/chipmunk
Browse files Browse the repository at this point in the history
Issue-250: Support for Android Studio Chipmunk (2021.2.1)
  • Loading branch information
Daniel Jette authored May 10, 2022
2 parents 28e1bf9 + 5d8e8ad commit d5e3c81
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Plugins/IntelliJ/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [Unreleased]

## [0.1.3]

### Updated

- Intellij plugin now supports Android Studio Chipmunk | 2021.2.1
Build 212.*

## [0.1.2]

### Updated
Expand Down
4 changes: 2 additions & 2 deletions Plugins/IntelliJ/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

pluginGroup = com.shopify.testify
pluginName = Android Testify - Screenshot Instrumentation Tests
pluginVersion = 0.1.2
pluginVersion = 0.1.3
pluginSinceBuild = 193
pluginUntilBuild = 211.*
pluginUntilBuild = 212.*

platformType = IC
platformVersion = 2020.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ val AnActionEvent.moduleName: String
val ktFile = (psiFile as? KtFile)
val projectName = ktFile?.project?.name?.replace(' ', '_') ?: ""
val moduleName = ktFile?.module?.name ?: ""
return moduleName.removePrefix("$projectName.")
return moduleName.removeSuffix(".androidTest").removePrefix("$projectName.")
}

val PsiElement.baselineImageName: String
Expand Down

0 comments on commit d5e3c81

Please sign in to comment.