File tree 4 files changed +58
-0
lines changed
4 files changed +58
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Run Autospec Tests
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+
11
+ jobs :
12
+ run-autospec :
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - name : Checkout repository
17
+ uses : actions/checkout@v3
18
+
19
+ - name : Set up Node.js
20
+ uses : actions/setup-node@v3
21
+ with :
22
+ node-version : " 20"
23
+
24
+ - name : Install dependencies
25
+ run : make
26
+
27
+ - name : Run Autospec Tests
28
+ env :
29
+ OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
30
+ run : ./tests/shouldPass.sh
Original file line number Diff line number Diff line change 4
4
npm install
5
5
npx husky install
6
6
npx playwright install
7
+ chmod +x ./tests/shouldPass.sh
8
+ chmod +x ./tests/shouldFail.sh
7
9
8
10
killautospec :
9
11
pkill -f index.js || true
Original file line number Diff line number Diff line change
1
+ # needs implementing
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # grab OPENAI_API_KEY from environment
4
+ if [ -z " $OPENAI_API_KEY " ]; then
5
+ echo " Please set the OPENAI_API_KEY environment variable."
6
+ exit 1
7
+ fi
8
+
9
+ testUrls=(
10
+ ' https://todomvc.com/examples/react/dist/'
11
+ ' https://demo.realworld.io/#/'
12
+ )
13
+
14
+ for url in " ${testUrls[@]} " ; do
15
+ echo " Running autospec for $url ..."
16
+ URL=$url node index
17
+ if [ $? -ne 0 ]; then
18
+ echo " autospec failed for $url "
19
+ exit 1
20
+ else
21
+ echo " autospec passed for $url "
22
+ fi
23
+ done
24
+
25
+ echo " All tests passed successfully."
You can’t perform that action at this time.
0 commit comments