-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
60 lines (40 loc) · 2.45 KB
/
Makefile
File metadata and controls
60 lines (40 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Endpoint.nvim Development Makefile
.PHONY: test test-symfony test-nestjs test-spring test-servlet test-fastapi test-rails test-oas-rails test-express test-react-router test-dotnet test-ktor test-django test-cache test-scanner test-picker-centering test-all-rails test-frameworks
test:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedDirectory tests/spec/"
test-symfony:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedDirectory tests/spec/symfony_spec.lua"
test-nestjs:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedDirectory tests/spec/nestjs_spec.lua"
test-spring:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedDirectory tests/spec/spring_spec.lua"
test-servlet:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedFile tests/spec/servlet_spec.lua"
test-fastapi:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedDirectory tests/spec/fastapi_spec.lua"
test-express:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedDirectory tests/spec/express_spec.lua"
test-express-ts:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedDirectory tests/spec/express_ts_spec.lua"
test-react-router:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedDirectory tests/spec/react_router_spec.lua"
test-dotnet:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedFile tests/spec/dotnet_spec.lua"
test-ktor:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedFile tests/spec/ktor_spec.lua"
test-django:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedFile tests/spec/django_spec.lua"
test-cache:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedDirectory tests/spec/cache_spec.lua"
test-scanner:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedDirectory tests/spec/scanner_spec.lua"
test-rails:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedFile tests/spec/rails_spec.lua"
test-oas-rails:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedFile tests/spec/oas_rails_spec.lua"
test-picker-centering:
nvim --headless --noplugin -u tests/minit.lua -c "PlenaryBustedFile tests/spec/picker_centering_spec.lua"
test-all-rails: test-rails test-oas-rails
@echo "Rails tests completed"
test-frameworks: test-symfony test-nestjs test-spring test-servlet test-fastapi test-rails test-express test-react-router test-dotnet test-ktor test-django
@echo "Framework tests completed"