mirror of
https://github.com/samsonjs/strftime.git
synced 2026-03-25 09:05:48 +00:00
remove test directory
This commit is contained in:
parent
ff9b94b3d9
commit
6bf19b4454
2 changed files with 5 additions and 5 deletions
8
Makefile
8
Makefile
|
|
@ -5,11 +5,11 @@ real-minify: strftime.js
|
|||
closure <strftime.js >|strftime-min.js
|
||||
|
||||
test:
|
||||
TZ=America/Vancouver node test/test.js
|
||||
TZ=CET node test/test.js
|
||||
TZ=America/Vancouver node test.js
|
||||
TZ=CET node test.js
|
||||
|
||||
test-minified: minify
|
||||
TZ=America/Vancouver node test/test.js ../strftime-min.js
|
||||
TZ=CET node test/test.js ../strftime-min.js
|
||||
TZ=America/Vancouver node test.js ./strftime-min.js
|
||||
TZ=CET node test.js ./strftime-min.js
|
||||
|
||||
.PHONY: test test-minified
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
// - look for edge cases
|
||||
|
||||
var assert = require('assert'),
|
||||
libFilename = process.argv[2] || '../strftime.js',
|
||||
libFilename = process.argv[2] || './strftime.js',
|
||||
strftime = require(libFilename),
|
||||
strftimeUTC = strftime.utc(),
|
||||
Time = new Date(1307472705067); // Tue, 07 Jun 2011 18:51:45 GMT
|
||||
Loading…
Reference in a new issue