File tree Expand file tree Collapse file tree 6 files changed +25
-7
lines changed Expand file tree Collapse file tree 6 files changed +25
-7
lines changed Original file line number Diff line number Diff line change 1+ providers :
2+ - airtap-playwright
3+
4+ browsers :
5+ - name : chromium
6+ supports :
7+ headless : true
Original file line number Diff line number Diff line change @@ -3,6 +3,3 @@ update_configs:
33 - package_manager : " javascript"
44 directory : " /"
55 update_schedule : " daily"
6- ignored_updates :
7- - match :
8- dependency_name : " tap"
Original file line number Diff line number Diff line change 11name : CI workflow
22on : [push, pull_request]
33jobs :
4+ browsers :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions/checkout@v2
8+ - uses : actions/setup-node@v1
9+ - name : Install Dependencies
10+ run : npm install
11+ - name : Test
12+ run : npm run test-in-browsers
413 test :
514 runs-on : ubuntu-latest
615 strategy :
Original file line number Diff line number Diff line change 11** /node_modules
22** /package-lock.json
33
4- coverage. *
4+ / .nyc_output
55
66** /.DS_Store
77** /._ *
Original file line number Diff line number Diff line change 55 "main" : " index.js" ,
66 "scripts" : {
77 "benchmark" : " cd benchmarks && npm install && npm run all" ,
8- "test" : " standard && tap test.js"
8+ "test" : " standard && nyc tape test.js" ,
9+ "test-in-browsers" : " airtap test.js"
910 },
1011 "repository" : {
1112 "type" : " git" ,
2526 },
2627 "homepage" : " https://github.com/fastify/secure-json-parse#readme" ,
2728 "devDependencies" : {
29+ "airtap" : " ^4.0.1" ,
30+ "airtap-playwright" : " ^1.0.1" ,
31+ "nyc" : " ^14.1.1" ,
32+ "playwright" : " ^1.7.1" ,
2833 "standard" : " ^16.0.0" ,
29- "tap " : " ^12.7.0 "
34+ "tape " : " ^5.1.1 "
3035 }
3136}
Original file line number Diff line number Diff line change 11'use strict'
22
3- const test = require ( 'tap ' ) . test
3+ const test = require ( 'tape ' ) . test
44const j = require ( './index' )
55
66test ( 'parse' , t => {
You can’t perform that action at this time.
0 commit comments