-
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #755 from black7375/dev
Ver 8.0.0 Feedback Thread
- Loading branch information
Showing
56 changed files
with
20,814 additions
and
1,361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
@use "true" as *; | ||
@use "example" as *; | ||
@use "../src/utils/mode"; | ||
|
||
@include test-module("ESR Mode [mix]") { | ||
@include mode.ESR; | ||
|
||
@include test("simple") { | ||
@include assert { | ||
@include output { | ||
@if mode.isESR() { | ||
@include example; | ||
} | ||
} | ||
@include expect { | ||
@include example; | ||
} | ||
} | ||
@include assert { | ||
@include output { | ||
@if mode.isSTANDARD() { | ||
@include example; | ||
} | ||
} | ||
@include expect { | ||
// IGNORE | ||
} | ||
} | ||
} | ||
} | ||
|
||
@include test-module("STANDARD Mode [mix]") { | ||
@include mode.STANDARD; | ||
|
||
@include test("simple") { | ||
@include assert { | ||
@include output { | ||
@if mode.isESR() { | ||
@include example; | ||
} | ||
} | ||
@include expect { | ||
// IGNORE | ||
} | ||
} | ||
@include assert { | ||
@include output { | ||
@if mode.isSTANDARD() { | ||
@include example; | ||
} | ||
} | ||
@include expect { | ||
@include example; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.