-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
“Martin
committed
Aug 23, 2023
1 parent
0a9707e
commit 0be0c68
Showing
2,278 changed files
with
76,029 additions
and
366,574 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" ?> | ||
<project basedir="." default="test" name="EMM_TEST_UI"> | ||
<macrodef name="exec-node"> | ||
<attribute name="module" description="The name of the NodeJS module to execute" /> | ||
<attribute name="failonerror" default="true" description="Fail if the exit code is not 0" /> | ||
<attribute name="dir" description="Directory to execute task" /> | ||
<element name="args" implicit="yes" description="Argument to pass to the exec task" /> | ||
<sequential> | ||
<exec executable="cmd.exe" dir="@{dir}" failonerror="@{failonerror}" osfamily="winnt"> | ||
<arg line="/c @{module}" /> | ||
<args /> | ||
</exec> | ||
<exec executable="@{module}" dir="@{dir}" failonerror="@{failonerror}" osfamily="unix" logError="true"> | ||
<args /> | ||
</exec> | ||
</sequential> | ||
</macrodef> | ||
|
||
<target name="test"> | ||
<exec-node dir="./test-ui" module="npm" failonerror="false" > | ||
<arg value="test" /> | ||
<arg value="--" /> | ||
<arg value="--reporter=list" /> | ||
</exec-node> | ||
</target> | ||
</project> |
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
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
Oops, something went wrong.